Skip to content

Basic mypy typings #382

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

Merged
merged 13 commits into from
Jul 24, 2022
Prev Previous commit
Next Next commit
chore(Session.new_window): Missing typing
  • Loading branch information
tony committed Jul 24, 2022
commit de17f9c3a8e28954de9e5e29d7dce54df3b1b44c
2 changes: 1 addition & 1 deletion libtmux/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def new_window(
wformats = ["session_name", "session_id"] + formats.WINDOW_FORMATS
tmux_formats = ["#{%s}" % f for f in wformats]

window_args = tuple()
window_args: t.Tuple = tuple()

if not attach:
window_args += ("-d",)
Expand Down