diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2023-01-27 18:50:27 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2023-01-27 19:24:27 -0500 |
commit | 694718a970fb5af1fde5f2f60eb4bf1845c9b747 (patch) | |
tree | ff482022db2c6db54056ff9325e14c4e5f2f436b /cmd2/argparse_custom.py | |
parent | 50b5aa7523c1b12fa038c8bfb4b68efe680a63c7 (diff) | |
download | cmd2-git-694718a970fb5af1fde5f2f60eb4bf1845c9b747.tar.gz |
Fixed mypy and flake8 errors.
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r-- | cmd2/argparse_custom.py | 2 |
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, ) |