Skip to content

Commit 37392d8

Browse files
committed
Fix unparsable Python file
1 parent 6a9ac4c commit 37392d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • libraries/cloudharness-common/cloudharness/workflows

libraries/cloudharness-common/cloudharness/workflows/operations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ def execute(self, timeout=None):
310310
time.sleep(POLLING_WAIT_SECONDS)
311311
log.debug(f"Polling argo workflow {self.persisted.name}")
312312
self.persisted = argo.get_workflow(self.persisted.name)
313-
log.debug(f"Polling succeeded for {
314-
self.persisted.name}. Current phase: {self.persisted.status}")
313+
log.debug(f"Polling succeeded for \
314+
{self.persisted.name}. Current phase: {self.persisted.status}")
315315
if timeout and time.time() - start_time > timeout:
316316
log.error("Timeout exceeded while polling for results")
317317
return self.persisted

0 commit comments

Comments
 (0)