diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:30:29 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-13 20:30:29 -0400 |
commit | 95d6a257c5738de8499d72846f0688a042220b70 (patch) | |
tree | 6244d51dcc3814843ce72f963e7cddb9b6554be4 /cmd2/table_creator.py | |
parent | cd6a18ca864f5d770f76df7fa318ce41921bf916 (diff) | |
download | cmd2-git-95d6a257c5738de8499d72846f0688a042220b70.tar.gz |
Added PyCharm warning suppressions
Diffstat (limited to 'cmd2/table_creator.py')
-rw-r--r-- | cmd2/table_creator.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd2/table_creator.py b/cmd2/table_creator.py index 4cfe0f0c..bc0bb4c8 100644 --- a/cmd2/table_creator.py +++ b/cmd2/table_creator.py @@ -21,6 +21,8 @@ try: from typing import Deque except ImportError: import typing + + # noinspection PyProtectedMember, PyUnresolvedReferences Deque = typing._alias(deque, typing.T) # Constants |