Skip to content

Commit 2d3cac3

Browse files
committed
fix(Window.split_window): Add typing to tuple
1 parent 45f5de6 commit 2d3cac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libtmux/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def split_window(
444444

445445
# '-t%s' % self.attached_pane.get('pane_id'),
446446
# 2013-10-18 LOOK AT THIS, rm'd it..
447-
tmux_args = tuple()
447+
tmux_args: t.Tuple = tuple()
448448

449449
if target:
450450
tmux_args += ("-t%s" % target,)

0 commit comments

Comments
 (0)