Skip to content

Commit 10218aa

Browse files
authored
Merge pull request #222 from fersarr/py311_imports
fixing import for py 3.11 compatibility
2 parents 3340160 + 3fb52c5 commit 10218aa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pytest-verbose-parametrize/pytest_verbose_parametrize.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
try:
2-
from collections.abc import Iterable
3-
except ImportError:
4-
from collections import Iterable
1+
from collections.abc import Iterable
52
from six import string_types, text_type
63

74

0 commit comments

Comments
 (0)