diff --git a/slpkg/views/cli_menu.py b/slpkg/views/cli_menu.py index 3341ad35..532ee286 100644 --- a/slpkg/views/cli_menu.py +++ b/slpkg/views/cli_menu.py @@ -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