From c99456289a9fbcb39614695e6f48aec03af2417e Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Mon, 22 Jul 2024 16:12:52 +0100 Subject: [PATCH] fixup merge --- cylc/flow/workflow_status.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cylc/flow/workflow_status.py b/cylc/flow/workflow_status.py index a8d8db38802..d6d6fb587dc 100644 --- a/cylc/flow/workflow_status.py +++ b/cylc/flow/workflow_status.py @@ -156,7 +156,6 @@ def get_workflow_status(schd: 'Scheduler') -> WorkflowStatus: return WorkflowStatus.PAUSED return WorkflowStatus.RUNNING -<<<<<<< HEAD def get_workflow_status_msg(schd: 'Scheduler') -> str: """Return a short, concise status message for the provided workflow.""" @@ -221,6 +220,3 @@ class RunMode: def get(options: 'Values') -> str: """Return the run mode from the options.""" return getattr(options, 'run_mode', None) or RunMode.LIVE -======= - return (status.value, status_msg) ->>>>>>> 8932dbfeb (Implement Skip Mode)