From 038bc6f8eb71f50e4e0108357e01caa43b508927 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Wed, 22 May 2024 19:01:15 +0300 Subject: [PATCH] Fixed D401 --- slpkg/views/cli_menu.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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