diff --git a/mbo/app/commands.py b/mbo/app/commands.py index 6b0a5c8..6a3383f 100644 --- a/mbo/app/commands.py +++ b/mbo/app/commands.py @@ -147,9 +147,6 @@ def SetOutputMode(cls, output_mode: HelpOutputMode): def IsOutputMode(self, output_mode: HelpOutputMode) -> bool: return self._help_output_mode == output_mode - def __init__(self, **kwargs) -> None: - super(CommandParagraphFormatter, self).__init__(**kwargs) - def _fill_text(self, text: str, width: int, indent: str) -> str: if len(indent) > 4: indent = " " * 4 @@ -178,7 +175,7 @@ def _fill_text(self, text: str, width: int, indent: str) -> str: ) return result - def _format_action_invocation(self, action): + def _format_action_invocation(self, action) -> str: result = super(CommandParagraphFormatter, self)._format_action_invocation( action )