summaryrefslogtreecommitdiff
path: root/pylint/config/man_help_formatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/config/man_help_formatter.py')
-rw-r--r--pylint/config/man_help_formatter.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pylint/config/man_help_formatter.py b/pylint/config/man_help_formatter.py
index 4b078146d..b265d654c 100644
--- a/pylint/config/man_help_formatter.py
+++ b/pylint/config/man_help_formatter.py
@@ -11,9 +11,7 @@ class _ManHelpFormatter(optparse.HelpFormatter):
def __init__(
self, indent_increment=0, max_help_position=24, width=79, short_first=0
):
- optparse.HelpFormatter.__init__(
- self, indent_increment, max_help_position, width, short_first
- )
+ super().__init__(indent_increment, max_help_position, width, short_first)
self.output_level: int
def format_heading(self, heading):