Skip to content

Commit

Permalink
Updated coding style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jul 30, 2023
1 parent 0799d79 commit 503dd32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyEDAA/UCIS/CLI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 503dd32

Please sign in to comment.