Skip to content

Commit 0cb2cd0

Browse files
Added more type annotations.
1 parent fb36e9e commit 0cb2cd0

21 files changed

+494
-378
lines changed

pymux/arrangement.py

Lines changed: 82 additions & 71 deletions
Large diffs are not rendered by default.

pymux/client/posix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
INPUT_TIMEOUT = 0.5
2020

21-
__all__ = (
21+
__all__ = [
2222
"PosixClient",
2323
"list_clients",
24-
)
24+
]
2525

2626

2727
class PosixClient(Client):

pymux/commands/aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Aliases for all commands.
33
(On purpose kept compatible with tmux.)
44
"""
5-
__all__ = ("ALIASES",)
5+
__all__ = ["ALIASES"]
66

77

88
ALIASES = {

0 commit comments

Comments
 (0)