From 23543d6d5c4dc7f295797365047d0dd23868420b Mon Sep 17 00:00:00 2001 From: Vatsal Ghelani <152916324+vatsalghelani-csa@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:13:35 -0400 Subject: [PATCH] Manually fix restyle --- src/python_testing/TC_MCORE_FS_1_3.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/python_testing/TC_MCORE_FS_1_3.py b/src/python_testing/TC_MCORE_FS_1_3.py index 5a87f76aeceb33..116cb297a00922 100644 --- a/src/python_testing/TC_MCORE_FS_1_3.py +++ b/src/python_testing/TC_MCORE_FS_1_3.py @@ -94,8 +94,7 @@ async def create_and_commission_device_for_th_ecosystem(self): self.device_for_th_eco_kvs = f'kvs_{str(uuid.uuid4())}' discriminator = random.randint(0, 4095) passcode = 20202021 - app_args = f'--secured-device-port {self.device_for_th_eco_port} --discriminator { - discriminator} --passcode {passcode} --KVS {self.device_for_th_eco_kvs}' + app_args = f'--secured-device-port {self.device_for_th_eco_port} --discriminator {discriminator} --passcode {passcode} --KVS {self.device_for_th_eco_kvs}' cmd = f'{app} {app_args}' # TODO: Determine if we want these logs cooked or pushed to somewhere else logging.info("Starting TH device for TH ecosystem")