Skip to content

Commit a801351

Browse files
committed
Server(cmd): Remove **kwargs
1 parent 2dd6331 commit a801351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libtmux/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def raise_if_dead(self) -> None:
173173
#
174174
# Command
175175
#
176-
def cmd(self, cmd: str, *args: t.Any, **kwargs: t.Any) -> tmux_cmd:
176+
def cmd(self, cmd: str, *args: t.Any) -> tmux_cmd:
177177
"""Execute tmux command respective of socket name and file, return output.
178178
179179
Examples
@@ -231,7 +231,7 @@ def cmd(self, cmd: str, *args: t.Any, **kwargs: t.Any) -> tmux_cmd:
231231
else:
232232
raise exc.UnknownColorOption()
233233

234-
return tmux_cmd(*cmd_args, **kwargs)
234+
return tmux_cmd(*cmd_args)
235235

236236
@property
237237
def attached_sessions(self) -> t.List[Session]:

0 commit comments

Comments
 (0)