Skip to content

Commit cd6a18c

Browse files
committed
small simplification
1 parent 3fc0833 commit cd6a18c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmd2/table_creator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020
try:
2121
from typing import Deque
2222
except ImportError:
23-
import collections
2423
import typing
25-
Deque = typing._alias(collections.deque, typing.T)
24+
Deque = typing._alias(deque, typing.T)
2625

2726
# Constants
2827
EMPTY = ''

0 commit comments

Comments
 (0)