summaryrefslogtreecommitdiff
path: root/tests/test_func.py
diff options
context:
space:
mode:
authorpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>2023-03-14 09:50:41 +0100
committerGitHub <noreply@github.com>2023-03-14 09:50:41 +0100
commit20e87156c577663f70caa4a32c1f46d19df12fb0 (patch)
tree2c4c9bcfbc40765a316aaffb4cafae7a11a5d762 /tests/test_func.py
parenta28292c106a130e091aea565c0c9da76fbb271b9 (diff)
downloadpylint-git-20e87156c577663f70caa4a32c1f46d19df12fb0.tar.gz
[pre-commit.ci] pre-commit autoupdate (#8452)
updates: - [github.com/charliermarsh/ruff-pre-commit: v0.0.254 → v0.0.255](https://github.com/charliermarsh/ruff-pre-commit/compare/v0.0.254...v0.0.255) - [github.com/charliermarsh/ruff-pre-commit: v0.0.254 → v0.0.255](https://github.com/charliermarsh/ruff-pre-commit/compare/v0.0.254...v0.0.255) - [github.com/rstcheck/rstcheck: v6.1.1 → v6.1.2](https://github.com/rstcheck/rstcheck/compare/v6.1.1...v6.1.2) - [github.com/pre-commit/mirrors-mypy: v1.0.1 → v1.1.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.0.1...v1.1.1) - [github.com/PyCQA/bandit: 1.7.4 → 1.7.5](https://github.com/PyCQA/bandit/compare/1.7.4...1.7.5) --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'tests/test_func.py')
-rw-r--r--tests/test_func.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_func.py b/tests/test_func.py
index be0160ea0..f67b89391 100644
--- a/tests/test_func.py
+++ b/tests/test_func.py
@@ -115,7 +115,7 @@ def gen_tests(
is_to_run = re.compile(filter_rgx).search
else:
is_to_run = ( # noqa: E731, We're going to throw all this anyway
- lambda x: 1 # type: ignore[assignment,misc] # pylint: disable=unnecessary-lambda-assignment
+ lambda x: 1 # type: ignore[assignment] # pylint: disable=unnecessary-lambda-assignment
)
tests: list[tuple[str, str, list[tuple[str, str]]]] = []
for module_file, messages_file in _get_tests_info(INPUT_DIR, MSG_DIR, "func_", ""):