diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:23:41 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:23:41 -0400 |
commit | 3fc0833fa38ca493980468522f1c558cc5e1f705 (patch) | |
tree | 983119f54b83aa2594810dbe86fe3e36f90a64b0 /cmd2 | |
parent | 252bde4e57a203550f6c48d12c6f13ccebf47d1d (diff) | |
download | cmd2-git-3fc0833fa38ca493980468522f1c558cc5e1f705.tar.gz |
slight cleanup
Diffstat (limited to 'cmd2')
-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 = '' |