Skip to content

Commit 5b9f20f

Browse files
committed
refactor!(tmux_cmd): Remove kwargs
1 parent 89f5bf5 commit 5b9f20f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libtmux/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class tmux_cmd:
215215
Renamed from ``tmux`` to ``tmux_cmd``.
216216
"""
217217

218-
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
218+
def __init__(self, *args: t.Any) -> None:
219219
tmux_bin = shutil.which("tmux")
220220
if not tmux_bin:
221221
raise exc.TmuxCommandNotFound()

0 commit comments

Comments
 (0)