Skip to content

Commit 4f2f7b8

Browse files
committed
fix indentation
1 parent 0fd23af commit 4f2f7b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mplfinance/plotting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _valid_plot_kwargs():
138138
'Validator' : lambda value: isinstance(value,bool) },
139139

140140
'return_calculated_values' : {'Default': None,
141-
'Validator': lambda value: isinstance(value, dict) and len(value) == 0},
141+
'Validator': lambda value: isinstance(value, dict) and len(value) == 0},
142142

143143
}
144144

@@ -175,7 +175,7 @@ def plot( data, **kwargs ):
175175

176176
config = _process_kwargs(kwargs, _valid_plot_kwargs())
177177

178-
dates,opens,highs,lows,closes,volumes = _check_and_prepare_data(data, config)
178+
dates,opens,highs,lows,closes,volumes = _check_and_prepare_data(data, config)
179179

180180
if config['type'] in VALID_PMOVE_TYPES and config['addplot'] is not None:
181181
err = "`addplot` is not supported for `type='" + config['type'] +"'`"

0 commit comments

Comments
 (0)