Skip to content

Commit 3f9d5d2

Browse files
author
John Buckenham
committed
flake8 formatting update
1 parent 99a3bbd commit 3f9d5d2

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

nixnet/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import print_function
44

55
try:
6-
from collections.abc import Iterable # python 3.3+
6+
from collections.abc import Iterable # python 3.3+
77
except ImportError:
88
from collections import Iterable # python 2.7
99
import typing # NOQA: F401

nixnet/system/_collection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
from __future__ import print_function
44

55
try:
6-
from collections.abc import Iterable, Sized # python 3.3+
6+
from collections.abc import Iterable # python 3.3+
7+
from collections.abc import Sized
78
except ImportError:
8-
from collections import Iterable, Sized # python 2.7
9+
from collections import Iterable # python 2.7
10+
from collections import Sized
911
import typing # NOQA: F401
1012

1113
from nixnet import _cprops

0 commit comments

Comments
 (0)