summaryrefslogtreecommitdiff
path: root/pylint/reporters/collecting_reporter.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/reporters/collecting_reporter.py')
-rw-r--r--pylint/reporters/collecting_reporter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/reporters/collecting_reporter.py b/pylint/reporters/collecting_reporter.py
index fbd9eb46b..70f313bb3 100644
--- a/pylint/reporters/collecting_reporter.py
+++ b/pylint/reporters/collecting_reporter.py
@@ -14,7 +14,7 @@ class CollectingReporter(BaseReporter):
name = "collector"
def __init__(self) -> None:
- BaseReporter.__init__(self)
+ super().__init__()
self.messages = []
def reset(self) -> None: