summaryrefslogtreecommitdiff
path: root/cmd2/argparse_custom.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2023-01-27 18:50:27 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2023-01-27 19:24:27 -0500
commit694718a970fb5af1fde5f2f60eb4bf1845c9b747 (patch)
treeff482022db2c6db54056ff9325e14c4e5f2f436b /cmd2/argparse_custom.py
parent50b5aa7523c1b12fa038c8bfb4b68efe680a63c7 (diff)
downloadcmd2-git-694718a970fb5af1fde5f2f60eb4bf1845c9b747.tar.gz
Fixed mypy and flake8 errors.
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r--cmd2/argparse_custom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_custom.py b/cmd2/argparse_custom.py
index fea6d9cd..a8ad1ebd 100644
--- a/cmd2/argparse_custom.py
+++ b/cmd2/argparse_custom.py
@@ -276,7 +276,7 @@ try:
runtime_checkable,
)
except ImportError:
- from typing_extensions import ( # type: ignore[misc]
+ from typing_extensions import ( # type: ignore[assignment]
Protocol,
runtime_checkable,
)