Skip to content

Commit

Permalink
Fixes to keep the style checker happy
Browse files Browse the repository at this point in the history
  • Loading branch information
fperez committed May 12, 2022
1 parent a433a89 commit 14fe2d2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions matplotlib_inline/config.py
Expand Up @@ -32,11 +32,13 @@ class InlineBackendConfig(SingletonConfigurable):
class InlineBackend(InlineBackendConfig):
"""An object to store configuration of the inline backend."""

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

figure_formats = Set(
{'png'},
Expand Down

0 comments on commit 14fe2d2

Please sign in to comment.