diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-30 08:55:10 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-30 09:57:46 -0500 |
commit | 96f290af9a4f3c9ea9d0954d06de8894ec9066b4 (patch) | |
tree | 0bca2f89f9fe5a0dfd137adb4a5b984a10db6bbf /coverage/control.py | |
parent | 27990185352f035bafbb0cc7c8ac4159e87fe070 (diff) | |
download | python-coveragepy-git-96f290af9a4f3c9ea9d0954d06de8894ec9066b4.tar.gz |
style: correct some lint errors
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 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 |