Skip to content

Commit 76b9023

Browse files
committed
mypy(shell): Ignore start_ipython() missing typing
src/tmuxp/shell.py:151: error: Call to untyped function "start_ipython" in typed context [no-untyped-call]
1 parent 0eb7d84 commit 76b9023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmuxp/shell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def get_ipython(
148148
def launch_ipython() -> None:
149149
imported_objects = get_launch_args(**options)
150150
ipython_arguments = extra_args or get_ipython_arguments()
151-
start_ipython(argv=ipython_arguments, user_ns=imported_objects)
151+
start_ipython(argv=ipython_arguments, user_ns=imported_objects) # type:ignore
152152

153153
return launch_ipython # NOQA: TRY300
154154
except ImportError:

0 commit comments

Comments
 (0)