Skip to content

Commit 7313527

Browse files
committed
python-3.10: moved more generic imports up
1 parent a99cb60 commit 7313527

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: testgres/node.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
import time
88

99
try:
10-
from collections import Iterable
11-
except ImportError:
1210
from collections.abc import Iterable
11+
except ImportError:
12+
from collections import Iterable
1313

1414
from shutil import rmtree
1515
from six import raise_from, iteritems, text_type

0 commit comments

Comments
 (0)