From dea75a66490ae6b6c5204dd535f6d1ebc0879183 Mon Sep 17 00:00:00 2001 From: Arief Anbiya <35247692+anbarief@users.noreply.github.com> Date: Wed, 2 Mar 2022 08:41:46 +0700 Subject: [PATCH] Removing TODO comment Remove the comment `` # ---------------------------------------------------------------------- # TODO: Add some warnings, or raise an exception, if external_axes_mode # and user is trying to figscale, figratio, or figsize. # ----------------------------------------------------------------------`` Since this TODO has been done in line 420. --- src/mplfinance/plotting.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/mplfinance/plotting.py b/src/mplfinance/plotting.py index 55f6d614..2d816fe2 100644 --- a/src/mplfinance/plotting.py +++ b/src/mplfinance/plotting.py @@ -442,11 +442,6 @@ def plot( data, **kwargs ): else: raise TypeError('style should be a `dict`; why is it not?') - # ---------------------------------------------------------------------- - # TODO: Add some warnings, or raise an exception, if external_axes_mode - # and user is trying to figscale, figratio, or figsize. - # ---------------------------------------------------------------------- - if not external_axes_mode: fig = plt.figure() _adjust_figsize(fig,config)