Simplify MainPrompt.emptyline.

This commit is contained in:
luukas 2022-05-21 02:04:03 +03:00
parent b49bca3279
commit 8f8b2aa22f
No known key found for this signature in database
GPG Key ID: CC4915E8D71FC044

View File

@ -22,9 +22,7 @@ class MainPrompt(cmd.Cmd):
# overrides the default Prompt
self.prompt = f"Crafty Controller v{self.helper.get_version_string()} > "
# see MR !233 for pylint exemptino reason
@staticmethod
def emptyline(): # pylint: disable=arguments-differ
def emptyline(self):
pass
def do_exit(self, _line):