summaryrefslogtreecommitdiff
path: root/pylint/testutils
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/testutils
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/testutils')
-rw-r--r--pylint/testutils/_primer/primer_run_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/testutils/_primer/primer_run_command.py b/pylint/testutils/_primer/primer_run_command.py
index d2fce7793..cd17d6b1d 100644
--- a/pylint/testutils/_primer/primer_run_command.py
+++ b/pylint/testutils/_primer/primer_run_command.py
@@ -85,7 +85,7 @@ class RunCommand(PrimerCommand):
try:
Run(arguments, reporter=reporter)
except SystemExit as e:
- pylint_exit_code = int(e.code)
+ pylint_exit_code = int(e.code) # type: ignore[arg-type]
readable_messages: str = output.getvalue()
messages: list[OldJsonExport] = json.loads(readable_messages)
fatal_msgs: list[Message] = []