diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-09 22:46:48 -0700 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-09 22:46:48 -0700 |
| commit | 4f68eb2a9f037d2369558cb7de232b4ce3898cf0 (patch) | |
| tree | c2ffcff1cde5aee2442dad220bc114c1030477cc | |
| parent | 5e349dc4ffcad2a5d30219b56b3ac33dcd1aadc7 (diff) | |
| download | cmd2-git-4f68eb2a9f037d2369558cb7de232b4ce3898cf0.tar.gz | |
Fixed imports since new categorization feature requires Iterable
| -rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
