Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Jun 24, 2024
1 parent bf8fdef commit a00bbf1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/arcaflow_plugin_sdk/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -5991,8 +5991,9 @@ def __call__(
result = self._handler(step_local_data.initialized_object, params)
if not isinstance(result, tuple):
raise BadArgumentException(
"The step returned type {}; expected a tuple with".format(type(result))
+ " two values: output ID string and a step-specific value."
"The step returned type {};".format(type(result))
+ " expected a tuple with two values: output ID string"
" and a step-specific value."
)
if len(result) != 2:
raise BadArgumentException(
Expand Down

0 comments on commit a00bbf1

Please sign in to comment.