diff options
-rw-r--r-- | cmd2/table_creator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/table_creator.py b/cmd2/table_creator.py index 322f2089..42321564 100644 --- a/cmd2/table_creator.py +++ b/cmd2/table_creator.py @@ -20,9 +20,9 @@ from . import ansi, constants, utils try: from typing import Deque except ImportError: - from typing import _alias, T import collections - Deque = _alias(collections.deque, T) + import typing + Deque = typing._alias(collections.deque, typing.T) # Constants EMPTY = '' |