Skip to content

Commit 725f25d

Browse files
committed
STY: trim whitespace and add trailing comma
1 parent cd78416 commit 725f25d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/sphinxext/plot_directive.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class PlotDirective(Directive):
279279
'context': _option_context,
280280
'nofigs': directives.flag,
281281
'encoding': directives.encoding,
282-
'outname': str
282+
'outname': str,
283283
}
284284

285285
def run(self):
@@ -304,7 +304,7 @@ def setup(app):
304304
app.add_config_value('plot_apply_rcparams', False, True)
305305
app.add_config_value('plot_working_directory', None, True)
306306
app.add_config_value('plot_template', None, True)
307-
app.add_config_value('plot_preserve_dir', '', True)
307+
app.add_config_value('plot_preserve_dir', '', True)
308308

309309
app.connect('doctree-read', mark_plot_labels)
310310

0 commit comments

Comments
 (0)