Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd3303e

Browse files
committed
Removed the Flake8 error
1 parent cd4b311 commit fd3303e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/matplotlib/style/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def use(style):
9494
# If name is a single str or dict, make it a single element list.
9595
styles = [style]
9696
elif isinstance(style, Path):
97-
# If the style is pathlib.Path object make a single element list of string
97+
# If the style is pathlib.Path object cast to string.
98+
# and make it a single element list.
9899
styles = [str(style)]
99100
else:
100101
styles = style

0 commit comments

Comments
 (0)