Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Sep 16, 2023
1 parent ff34168 commit db6b4f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arcaflow_plugin_wait/arcaflow_plugin_wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit db6b4f2

Please sign in to comment.