Skip to content

Commit 9675253

Browse files
committed
flake8 fix for 3.8.x
1 parent 99d4c75 commit 9675253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tmuxp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ def set_layout_hook(session, hook_name):
169169
# with the client
170170
hook_cmd.append('selectw -t {}'.format(window.id))
171171
# edit: removed -t, or else it won't respect main-pane-w/h
172-
hook_cmd.append('selectl'.format(window.id))
173-
hook_cmd.append('selectw -p'.format(window.id))
172+
hook_cmd.append('selectl')
173+
hook_cmd.append('selectw -p')
174174

175175
# unset the hook immediately after executing
176176
hook_cmd.append(

0 commit comments

Comments
 (0)