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 19daf49 commit 8f05ba6Copy full SHA for 8f05ba6
lib/matplotlib/sphinxext/plot_directive.py
@@ -322,7 +322,7 @@ def setup(app):
322
metadata = {'parallel_read_safe': True, 'parallel_write_safe': True,
323
'version': matplotlib.__version__}
324
app.connect('builder-inited', init_filename_registry)
325
- app.add_env_collector(FilenameCollector)
+ app.add_env_collector(_FilenameCollector)
326
return metadata
327
328
@@ -336,7 +336,7 @@ def init_filename_registry(app):
336
env.mpl_custom_base_names = defaultdict(set)
337
338
339
-class FilenameCollector(EnvironmentCollector):
+class _FilenameCollector(EnvironmentCollector):
340
def process_doc(self, app, doctree):
341
pass
342
0 commit comments