summaryrefslogtreecommitdiff
path: root/pylint/reporters/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/reporters/text.py')
-rw-r--r--pylint/reporters/text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py
index 6caa9b913..8af3f879c 100644
--- a/pylint/reporters/text.py
+++ b/pylint/reporters/text.py
@@ -180,7 +180,7 @@ class TextReporter(BaseReporter):
line_format = "{path}:{line}:{column}: {msg_id}: {msg} ({symbol})"
def __init__(self, output: Optional[TextIO] = None) -> None:
- BaseReporter.__init__(self, output)
+ super().__init__(output)
self._modules: Set[str] = set()
self._template = self.line_format
@@ -222,7 +222,7 @@ class ParseableTextReporter(TextReporter):
f"{self.name} output format is deprecated. This is equivalent to --msg-template={self.line_format}",
DeprecationWarning,
)
- TextReporter.__init__(self, output)
+ super().__init__(output)
class VSTextReporter(ParseableTextReporter):
@@ -270,7 +270,7 @@ class ColorizedTextReporter(TextReporter):
ColorMappingDict, Dict[str, Tuple[Optional[str], Optional[str]]], None
] = None,
) -> None:
- TextReporter.__init__(self, output)
+ super().__init__(output)
# pylint: disable-next=fixme
# TODO: Remove DeprecationWarning and only accept ColorMappingDict as color_mapping parameter
if color_mapping and not isinstance(