diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:25:30 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:25:30 -0400 |
commit | cd6a18ca864f5d770f76df7fa318ce41921bf916 (patch) | |
tree | 689debe44c314326ce50ad51cae563351ec88f07 /cmd2/table_creator.py | |
parent | 3fc0833fa38ca493980468522f1c558cc5e1f705 (diff) | |
download | cmd2-git-cd6a18ca864f5d770f76df7fa318ce41921bf916.tar.gz |
small simplification
Diffstat (limited to 'cmd2/table_creator.py')
-rw-r--r-- | cmd2/table_creator.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd2/table_creator.py b/cmd2/table_creator.py index 42321564..4cfe0f0c 100644 --- a/cmd2/table_creator.py +++ b/cmd2/table_creator.py @@ -20,9 +20,8 @@ from . import ansi, constants, utils try: from typing import Deque except ImportError: - import collections import typing - Deque = typing._alias(collections.deque, typing.T) + Deque = typing._alias(deque, typing.T) # Constants EMPTY = '' |