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 bac4ac0 commit 7505db4Copy full SHA for 7505db4
libtmux/_compat.py
@@ -1,7 +1,6 @@
1
# flake8: NOQA
2
import sys
3
import typing as t
4
-from collections.abc import MutableMapping
5
6
console_encoding = sys.__stdout__.encoding
7
libtmux/common.py
@@ -11,10 +11,11 @@
11
import subprocess
12
13
14
+from collections.abc import MutableMapping
15
from distutils.version import LooseVersion
16
17
from . import exc
-from ._compat import MutableMapping, console_to_str, str_from_console
18
+from ._compat import console_to_str, str_from_console
19
20
logger = logging.getLogger(__name__)
21
0 commit comments