From 503dd3224736a331d08da2321fe32687fc471f8b Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 30 Jul 2023 15:12:45 +0200 Subject: [PATCH] Updated coding style. --- pyEDAA/UCIS/CLI/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyEDAA/UCIS/CLI/__init__.py b/pyEDAA/UCIS/CLI/__init__.py index ae3ff4cc..3104c0e6 100644 --- a/pyEDAA/UCIS/CLI/__init__.py +++ b/pyEDAA/UCIS/CLI/__init__.py @@ -192,9 +192,9 @@ def _PrintVersion(self): def _PrintHelp(self, command: str=None): """Helper function to print the command line parsers help page(s).""" - if (command is None): + if command is None: self.MainParser.print_help() - elif (command == "help"): + elif command == "help": print("This is a recursion ...") else: try: