From db6b4f27a787468b5c27b9fbbea3292a594ab2d7 Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Fri, 15 Sep 2023 22:41:13 -0400 Subject: [PATCH] Fix linting --- arcaflow_plugin_wait/arcaflow_plugin_wait.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arcaflow_plugin_wait/arcaflow_plugin_wait.py b/arcaflow_plugin_wait/arcaflow_plugin_wait.py index 906a1aa..fae2d7a 100644 --- a/arcaflow_plugin_wait/arcaflow_plugin_wait.py +++ b/arcaflow_plugin_wait/arcaflow_plugin_wait.py @@ -60,7 +60,11 @@ def cancel_step(self, _input: predefined_schemas.cancelInput): id="wait", name="Wait", description="Waits for the given amount of time", - outputs={"success": SuccessOutput, "error": ErrorOutput, "cancelled_early": ErrorOutput}, + outputs={ + "success": SuccessOutput, + "error": ErrorOutput, + "cancelled_early": ErrorOutput + }, signal_handler_method_names=["cancel_step"], signal_emitters=[], step_object_constructor=lambda: WaitStep(),