Skip to content

Commit

Permalink
mypy(shell): Ignore start_ipython() missing typing
Browse files Browse the repository at this point in the history
src/tmuxp/shell.py:151: error: Call to untyped function "start_ipython" in typed context  [no-untyped-call]
  • Loading branch information
tony committed Jun 1, 2024
1 parent 0eb7d84 commit 76b9023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmuxp/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def get_ipython(
def launch_ipython() -> None:
imported_objects = get_launch_args(**options)
ipython_arguments = extra_args or get_ipython_arguments()
start_ipython(argv=ipython_arguments, user_ns=imported_objects)
start_ipython(argv=ipython_arguments, user_ns=imported_objects) # type:ignore

return launch_ipython # NOQA: TRY300
except ImportError:
Expand Down

0 comments on commit 76b9023

Please sign in to comment.