Skip to content

Commit 14fe2d2

Browse files
committed
Fixes to keep the style checker happy
1 parent a433a89 commit 14fe2d2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

matplotlib_inline/config.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ class InlineBackendConfig(SingletonConfigurable):
3232
class InlineBackend(InlineBackendConfig):
3333
"""An object to store configuration of the inline backend."""
3434

35-
rc = Dict({ },
35+
rc = Dict(
36+
{},
3637
help="""Deprecated: as of v0.1.4, we do not override any matplotlib
37-
defaults. Please use matplotlib's configuration tools, or customize this class
38-
in your `ipython_config.py` file for IPython/Jupyter-specific usage."""
39-
).tag(config=True)
38+
defaults. Please use matplotlib's configuration tools, or customize
39+
this classin your `ipython_config.py` file for IPython/Jupyter-
40+
specific usage."""
41+
).tag(config=True)
4042

4143
figure_formats = Set(
4244
{'png'},

0 commit comments

Comments
 (0)