renamed nfc data command and argument (Now: nfc and --nfc)

This commit is contained in:
Robert Martin
2020-06-11 17:47:57 +02:00
parent 628491fd9f
commit fee9e719c6
2 changed files with 27 additions and 17 deletions
+7
View File
@@ -89,6 +89,13 @@ class CLI:
else:
print('command', cmd, 'not found, call help for help.')
@staticmethod
def deprecated(message):
async def dep_printer(*args, **kwargs):
print(message)
return dep_printer
class ControllerCLI(CLI):
def __init__(self, controller_state: ControllerState):