mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Fixed D401
This commit is contained in:
parent
4855ccfc7e
commit
038bc6f8eb
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ class Usage(Configs):
|
|||
super(Configs, self).__init__()
|
||||
|
||||
def help_minimal(self, message: str) -> NoReturn:
|
||||
"""Prints the minimal help menu.
|
||||
"""Print the minimal help menu.
|
||||
|
||||
Args:
|
||||
message (str): Message of error.
|
||||
|
@ -32,7 +32,7 @@ class Usage(Configs):
|
|||
raise SystemExit(1)
|
||||
|
||||
def help_short(self, status: int) -> NoReturn:
|
||||
"""Prints the short menu.
|
||||
"""Print the short menu.
|
||||
|
||||
Args:
|
||||
status (int): Status exit code.
|
||||
|
@ -59,7 +59,7 @@ class Usage(Configs):
|
|||
raise SystemExit(status)
|
||||
|
||||
def help(self, status: int) -> NoReturn:
|
||||
"""Prints the main menu.
|
||||
"""Print the main menu.
|
||||
|
||||
Args:
|
||||
status (int): Status exit code
|
||||
|
|
Loading…
Reference in a new issue