master > master: code py - minor

This commit is contained in:
RD
2022-06-11 14:07:00 +02:00
parent d454f71bfa
commit 8acb2157ab
3 changed files with 5 additions and 9 deletions

View File

@@ -29,11 +29,13 @@ def enter(*args: str):
# Führe befehle in Assets aus:
for command in config.COMMANDS:
result = api.run_command(command);
log.log_result(result, debug=True); # ignored if log-level >> DEBUG
# ignored if log-level >> DEBUG
log.log_result(result, debug=True);
else:
# Führe CLI-Befehl aus:
result = api.run_command_from_json(args[0]);
log.log_result(result, debug=True); # ignored if log-level >> DEBUG
# ignored if log-level >> DEBUG
log.log_result(result, debug=True);
return;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~