Skip to content

Commit

Permalink
flake8 formatting update
Browse files Browse the repository at this point in the history
  • Loading branch information
John Buckenham committed Aug 9, 2023
1 parent 99a3bbd commit 3f9d5d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nixnet/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function

try:
from collections.abc import Iterable # python 3.3+
from collections.abc import Iterable # python 3.3+
except ImportError:
from collections import Iterable # python 2.7
import typing # NOQA: F401
Expand Down
6 changes: 4 additions & 2 deletions nixnet/system/_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
from __future__ import print_function

try:
from collections.abc import Iterable, Sized # python 3.3+
from collections.abc import Iterable # python 3.3+
from collections.abc import Sized
except ImportError:
from collections import Iterable, Sized # python 2.7
from collections import Iterable # python 2.7
from collections import Sized
import typing # NOQA: F401

from nixnet import _cprops
Expand Down

0 comments on commit 3f9d5d2

Please sign in to comment.