From 14fe2d263cf652812e1d2167490b17ec397b8ed7 Mon Sep 17 00:00:00 2001 From: Fernando Perez Date: Thu, 12 May 2022 14:25:43 -0700 Subject: [PATCH] Fixes to keep the style checker happy --- matplotlib_inline/config.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/matplotlib_inline/config.py b/matplotlib_inline/config.py index 1fdae86..78f1426 100644 --- a/matplotlib_inline/config.py +++ b/matplotlib_inline/config.py @@ -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'},