Skip to content

Commit 3fc0833

Browse files
committed
slight cleanup
1 parent 252bde4 commit 3fc0833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd2/table_creator.py

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

2727
# Constants
2828
EMPTY = ''

0 commit comments

Comments
 (0)