You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user imports an existing .ipynb file, IPython magics such as %matplotlib inline are converted to get_ipython().run_line_magic('matplotlib', 'inline'). There should be a corresponding from IPython import get_ipython import statement.
Actual behaviour
We do not currently add a from IPython import get_ipython cell on import, so the linter complains about get_ipython() being an undefined variable.
The text was updated successfully, but these errors were encountered:
Expected behaviour
When a user imports an existing .ipynb file, IPython magics such as
%matplotlib inline
are converted toget_ipython().run_line_magic('matplotlib', 'inline')
. There should be a correspondingfrom IPython import get_ipython
import statement.Actual behaviour
We do not currently add a
from IPython import get_ipython
cell on import, so the linter complains aboutget_ipython()
being an undefined variable.The text was updated successfully, but these errors were encountered: