Skip to content

Commit 71e73de

Browse files
committed
add missing quote in error message to pass test
1 parent 0d8d002 commit 71e73de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mplfinance/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def plot( data, **kwargs ):
170170
config = _process_kwargs(kwargs, _valid_plot_kwargs())
171171

172172
if config['type'] in ['renko', 'pf', 'p&f'] and config['addplot'] is not None:
173-
err = "`addplot` is not supported for `type=" + config['type'] +"'`"
173+
err = "`addplot` is not supported for `type='" + config['type'] +"'`"
174174
raise ValueError(err)
175175

176176
style = config['style']

0 commit comments

Comments
 (0)