We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a3bbd commit 3f9d5d2Copy full SHA for 3f9d5d2
2 files changed
nixnet/_utils.py
@@ -3,7 +3,7 @@
3
from __future__ import print_function
4
5
try:
6
- from collections.abc import Iterable # python 3.3+
+ from collections.abc import Iterable # python 3.3+
7
except ImportError:
8
from collections import Iterable # python 2.7
9
import typing # NOQA: F401
nixnet/system/_collection.py
@@ -3,9 +3,11 @@
- from collections.abc import Iterable, Sized # python 3.3+
+ from collections.abc import Sized
- from collections import Iterable, Sized # python 2.7
+ from collections import Iterable # python 2.7
10
+ from collections import Sized
11
12
13
from nixnet import _cprops
0 commit comments