diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-01 21:01:12 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-01 21:01:12 -0400 |
commit | 262c06921db064a85f442b19cbf0980bb3cd786d (patch) | |
tree | 9ebd5e6f98886b0307d222355b98bd5e49bd458a /coverage/config.py | |
parent | 4a51c0a2270be3bfdb0f4e4fb4fce1ee8465532b (diff) | |
download | python-coveragepy-git-262c06921db064a85f442b19cbf0980bb3cd786d.tar.gz |
Silence a pylint warning
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coverage/config.py b/coverage/config.py index 01ceef79..d5d89d1f 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -157,6 +157,8 @@ class CoverageConfig(object): operation of coverage.py. """ + # pylint: disable=too-many-instance-attributes + def __init__(self): """Initialize the configuration attributes to their defaults.""" # Metadata about the config. |