summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2.py b/cmd2.py
index b461868a..6179df69 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -56,7 +56,7 @@ import pyperclip
# Collection is a container that is sizable and iterable
# It was introduced in Python 3.6. We will try to import it, otherwise use our implementation
try:
- from collections.abc import Collection
+ from collections.abc import Collection, Iterable
except ImportError:
if six.PY3: