Improved help command

This commit is contained in:
Sven Heidemann 2022-05-19 20:23:21 +02:00
parent 94c82e6701
commit 0a285f2d28

View File

@ -15,7 +15,6 @@ class CommandABC(ExecutableArgument):
def help_message(self) -> str: pass def help_message(self) -> str: pass
def execute(self, args: list[str]): def execute(self, args: list[str]):
Console.write_line(args)
if 'help' in args: if 'help' in args:
Console.write_line(self.help_message) Console.write_line(self.help_message)
return return