diff options
-rw-r--r-- | coverage/control.py | 4 | ||||
-rw-r--r-- | coverage/plugin.py | 2 | ||||
-rw-r--r-- | pylintrc | 1 | ||||
-rw-r--r-- | tests/test_api.py | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/coverage/control.py b/coverage/control.py index 69db200b..71b56a44 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -112,7 +112,7 @@ class Coverage(TConfigurable): else: return None - def __init__( + def __init__( # pylint: disable=too-many-arguments self, data_file=DEFAULT_DATAFILE, data_suffix=None, @@ -130,7 +130,7 @@ class Coverage(TConfigurable): check_preimported=False, context=None, messages=False, - ) -> None: # pylint: disable=too-many-arguments + ) -> None: """ Many of these arguments duplicate and override values that can be provided in a configuration file. Parameters that are missing here diff --git a/coverage/plugin.py b/coverage/plugin.py index 8f309f42..af586ec2 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -117,7 +117,7 @@ from __future__ import annotations import functools from types import FrameType -from typing import Any, Dict, Iterable, List, Optional, Set, Tuple, Union +from typing import Any, Dict, Iterable, Optional, Set, Tuple, Union from coverage import files from coverage.misc import _needs_to_implement @@ -75,6 +75,7 @@ disable= self-assigning-variable, consider-using-with, missing-timeout, + use-implicit-booleaness-not-comparison, # Formatting stuff superfluous-parens, # Messages that are noisy for now, eventually maybe we'll turn them on: diff --git a/tests/test_api.py b/tests/test_api.py index 71712f8e..ee24aa8f 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -32,8 +32,6 @@ BAD_SQLITE_REGEX = r"file( is encrypted or)? is not a database" class ApiTest(CoverageTest): """Api-oriented tests for coverage.py.""" - # pylint: disable=use-implicit-booleaness-not-comparison - def clean_files(self, files, pats): """Remove names matching `pats` from `files`, a list of file names.""" good = [] |