We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vcdopcod
style_name
1 parent 871448f commit 75d44beCopy full SHA for 75d44be
src/mplfinance/_styles.py
@@ -94,6 +94,9 @@ def _valid_make_mpf_style_kwargs():
94
'rc' : { 'Default' : None,
95
'Validator' : lambda value: isinstance(value,dict) },
96
97
+ 'style_name' : { 'Default' : None,
98
+ 'Validator' : lambda value: isinstance(value,str) },
99
+
100
}
101
_validate_vkwargs_dict(vkwargs)
102
return vkwargs
@@ -182,6 +185,9 @@ def _valid_make_marketcolors_kwargs():
182
185
or isinstance(value,str)
183
186
or mcolors.is_color_like(value) },
184
187
188
+ 'vcdopcod' : { 'Default' : False,
189
+ 'Validator' : lambda value: isinstance(value,bool) },
190
191
'inherit' : { 'Default' : False,
192
'Validator' : lambda value: isinstance(value,bool) },
193
0 commit comments