diff --git a/IPython/core/compilerop.py b/IPython/core/compilerop.py index e3d77b1..bffac9c 100644 --- a/IPython/core/compilerop.py +++ b/IPython/core/compilerop.py @@ -190,8 +190,6 @@ def check_linecache_ipython(*args): also existed? """ import warnings - warnings.warn( - 'Just call linecache.checkcache() directly.', - DeprecationWarning - ) + + warnings.warn("Just call linecache.checkcache() directly.", DeprecationWarning) linecache.checkcache()