Skip to content

Commit

Permalink
python-3.10: moved more generic imports up
Browse files Browse the repository at this point in the history
  • Loading branch information
kulaginm committed Apr 11, 2022
1 parent a99cb60 commit 7313527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import time

try:
from collections import Iterable
except ImportError:
from collections.abc import Iterable
except ImportError:
from collections import Iterable

from shutil import rmtree
from six import raise_from, iteritems, text_type
Expand Down

0 comments on commit 7313527

Please sign in to comment.