From 5de92a366a7e7b63c80b536ec345faa8c3a58e2f Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Wed, 27 Apr 2022 16:08:51 +0200 Subject: [PATCH] reformated --- pus_tc/devs/ploc_supervisor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pus_tc/devs/ploc_supervisor.py b/pus_tc/devs/ploc_supervisor.py index 9038928..8dae413 100644 --- a/pus_tc/devs/ploc_supervisor.py +++ b/pus_tc/devs/ploc_supervisor.py @@ -152,10 +152,10 @@ def pack_ploc_supv_commands( tc_queue.appendleft( (QueueCommands.PRINT, "PLOC Supervisor: Select MPSoC boot image") ) - mem = int(input("MEM (NVM0 - 0 or NVM1 - 1):")) - bp0 = int(input("BP0 (0 or 1):")) - bp1 = int(input("BP1 (0 or 1):")) - bp2 = int(input("BP2 (0 or 1):")) + mem = int(input("MEM (NVM0 - 0 or NVM1 - 1): ")) + bp0 = int(input("BP0 (0 or 1): ")) + bp1 = int(input("BP1 (0 or 1): ")) + bp2 = int(input("BP2 (0 or 1): ")) command = pack_sel_boot_image_cmd(object_id, mem, bp0, bp1, bp2) command = PusTelecommand(service=8, subservice=128, ssc=24, app_data=command) tc_queue.appendleft(command.pack_command_tuple())