summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-07-13 20:30:29 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-07-13 20:30:29 -0400
commit95d6a257c5738de8499d72846f0688a042220b70 (patch)
tree6244d51dcc3814843ce72f963e7cddb9b6554be4
parentcd6a18ca864f5d770f76df7fa318ce41921bf916 (diff)
downloadcmd2-git-95d6a257c5738de8499d72846f0688a042220b70.tar.gz
Added PyCharm warning suppressions
-rw-r--r--cmd2/table_creator.py2
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