summaryrefslogtreecommitdiff
path: root/pylint/config/argument.py
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-11-14 17:56:44 +0100
committerGitHub <noreply@github.com>2022-11-14 17:56:44 +0100
commit5b57f941b5ed95d55967bec08997882e5751bd88 (patch)
treea653f7d9bf4b8651f5fd339bf34fe3b5e4075fab /pylint/config/argument.py
parentfbbc9e81d1b9c1f93f7ae856d71ce4aeedff353a (diff)
downloadpylint-git-5b57f941b5ed95d55967bec08997882e5751bd88.tar.gz
Bump mypy from 0.982 to 0.990 (#7769)
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to 'pylint/config/argument.py')
-rw-r--r--pylint/config/argument.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/config/argument.py b/pylint/config/argument.py
index 6c4d10041..7a03d82b2 100644
--- a/pylint/config/argument.py
+++ b/pylint/config/argument.py
@@ -365,9 +365,9 @@ class _ExtendArgument(_DeprecationArgument):
) -> None:
# The extend action is included in the stdlib from 3.8+
if PY38_PLUS:
- action_class = argparse._ExtendAction # type: ignore[attr-defined]
+ action_class = argparse._ExtendAction
else:
- action_class = _ExtendAction
+ action_class = _ExtendAction # type: ignore[assignment]
self.dest = dest
"""The destination of the argument."""