From bf8fdef214bb8bc5f1d688a716f573a43d4ee40f Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Mon, 24 Jun 2024 12:44:34 -0400 Subject: [PATCH] Fix linting error --- src/arcaflow_plugin_sdk/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(