Skip to content

Commit 7cea7b9

Browse files
committed
chore(shell) Ignore mypy type issue
src/tmuxp/shell.py:289: error: Argument "local" to "interact" has incompatible type "LaunchImports"; expected "Optional[dict[str, Any]]" [arg-type]
1 parent 9b87c54 commit 7cea7b9

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
@@ -286,7 +286,7 @@ def get_code(use_pythonrc: bool, imported_objects: LaunchImports) -> t.Any:
286286
)
287287

288288
def launch_code() -> None:
289-
code.interact(local=imported_objects)
289+
code.interact(local=imported_objects) # type:ignore
290290

291291
return launch_code
292292

0 commit comments

Comments
 (0)