Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ipython display imports #509

Merged
merged 1 commit into from
May 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ipykernel/pylab/backend_inline.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from matplotlib._pylab_helpers import Gcf

from IPython.core.getipython import get_ipython
from IPython.core.display import display
from IPython.display import display

from .config import InlineBackend

Expand Down
2 changes: 1 addition & 1 deletion ipykernel/tests/test_message_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def test_stream():
def test_display_data():
flush_channels()

msg_id, reply = execute("from IPython.core.display import display; display(1)")
msg_id, reply = execute("from IPython.display import display; display(1)")

display = KC.iopub_channel.get_msg(timeout=TIMEOUT)
validate_message(display, 'display_data', parent=msg_id)
Expand Down