Thanks to visit codestin.com Credit goes to github.com
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.
1 parent cd4b311 commit fd3303eCopy full SHA for fd3303e
1 file changed
lib/matplotlib/style/core.py
@@ -94,7 +94,8 @@ def use(style):
94
# If name is a single str or dict, make it a single element list.
95
styles = [style]
96
elif isinstance(style, Path):
97
- # If the style is pathlib.Path object make a single element list of string
+ # If the style is pathlib.Path object cast to string.
98
+ # and make it a single element list.
99
styles = [str(style)]
100
else:
101
styles = style
0 commit comments