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 8d3e817 commit 968c10cCopy full SHA for 968c10c
lib/matplotlib/style/core.py
@@ -83,8 +83,6 @@ def use(style):
83
| list | A list of style specifiers (str or dict) applied from first |
84
| | to last in the list. |
85
+------+-------------------------------------------------------------+
86
-
87
88
"""
89
style_alias = {'mpl20': 'default',
90
'mpl15': 'classic'}
@@ -218,5 +216,8 @@ def update_nested_dict(main_dict, new_dict):
218
216
def reload_library():
219
217
"""Reload style library."""
220
global library
221
- available[:] = library = update_user_library(_base_library)
+ library = update_user_library(_base_library)
+ available[:] = sorted(library.keys())
+
222
223
reload_library()
0 commit comments