diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-16 14:59:48 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-16 14:59:48 -0400 |
commit | dcf58077f7be70d4c992c2cd3fe851ade84ea4f1 (patch) | |
tree | bd165d2407be57ca63694d75233ab19abe818c81 /coverage/config.py | |
parent | fc75fea9e70b0ca3333aa62d2efa599b0ae765af (diff) | |
download | python-coveragepy-dcf58077f7be70d4c992c2cd3fe851ade84ea4f1.tar.gz |
Add more contracts
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/coverage/config.py b/coverage/config.py index 7b14267..02c4917 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -16,7 +16,6 @@ class HandyConfigParser(configparser.RawConfigParser): """Our specialization of ConfigParser.""" def __init__(self, section_prefix): - # pylint: disable=super-init-not-called configparser.RawConfigParser.__init__(self) self.section_prefix = section_prefix |