We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a7953 commit 92f430fCopy full SHA for 92f430f
libtmux/common.py
@@ -25,6 +25,10 @@
25
#: Most recent version of tmux supported
26
TMUX_MAX_VERSION = "2.4"
27
28
+SessionDict = t.Dict[str, t.Any]
29
+WindowDict = t.Dict[str, t.Any]
30
+PaneDict = t.Dict[str, t.Any]
31
+
32
33
class EnvironmentMixin:
34
libtmux/server.py
@@ -11,17 +11,16 @@
11
from . import exc, formats
12
from .common import (
13
EnvironmentMixin,
14
+ PaneDict,
15
+ SessionDict,
16
TmuxRelationalObject,
17
+ WindowDict,
18
has_gte_version,
19
session_check_name,
20
tmux_cmd,
21
)
22
from .session import Session
23
-SessionDict = t.Dict[str, t.Any]
-WindowDict = t.Dict[str, t.Any]
-PaneDict = t.Dict[str, t.Any]
24
-
logger = logging.getLogger(__name__)
0 commit comments