diff --git a/src/arcaflow_plugin_sdk/schema.py b/src/arcaflow_plugin_sdk/schema.py index 0a26299..464c6b0 100644 --- a/src/arcaflow_plugin_sdk/schema.py +++ b/src/arcaflow_plugin_sdk/schema.py @@ -5991,8 +5991,8 @@ def __call__( result = self._handler(step_local_data.initialized_object, params) if not isinstance(result, tuple): raise BadArgumentException( - "The step returned type {};".format(type(result)) - + " expected a tuple with two values: output ID string and a step-specific value." + "The step returned type {}; expected a tuple with".format(type(result)) + + " two values: output ID string and a step-specific value." ) if len(result) != 2: raise BadArgumentException(