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

Skip to content

Commit 7c56214

Browse files
timhoffmQuLogic
andauthored
Update lib/matplotlib/pyplot.py
Co-authored-by: Elliott Sales de Andrade <[email protected]>
1 parent b7be3c8 commit 7c56214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2030,7 +2030,7 @@ def get_plot_commands():
20302030
# a few hard-coded exclusions, as well as all of the colormap-setting
20312031
# functions, and anything marked as private with a preceding underscore.
20322032
exclude = {'colormaps', 'colors', 'get_plot_commands',
2033-
} | _NON_PLOT_COMMANDS | set(colormaps)
2033+
*_NON_PLOT_COMMANDS, *colormaps}
20342034
this_module = inspect.getmodule(get_plot_commands)
20352035
return sorted(
20362036
name for name, obj in globals().items()

0 commit comments

Comments
 (0)