Skip to content

Commit 4f68eb2

Browse files
committed
Fixed imports since new categorization feature requires Iterable
1 parent 5e349dc commit 4f68eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# Collection is a container that is sizable and iterable
5757
# It was introduced in Python 3.6. We will try to import it, otherwise use our implementation
5858
try:
59-
from collections.abc import Collection
59+
from collections.abc import Collection, Iterable
6060
except ImportError:
6161

6262
if six.PY3:

0 commit comments

Comments
 (0)