Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/ipython_beartype/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

from beartype.claw._ast.clawastmain import BeartypeNodeTransformer
from beartype._conf.confcls import BeartypeConf
from IPython.terminal.interactiveshell import TerminalInteractiveShell
from IPython.terminal.interactiveshell import InteractiveShell


def load_ipython_extension(ipython: TerminalInteractiveShell) -> None:
def load_ipython_extension(ipython: InteractiveShell) -> None:
# The import is local to avoid degrading import times when the magic is
# not needed.
from IPython.core.magic import line_magic, Magics, magics_class
Expand Down
Loading