From e2b6e95fa93920bff330b94862735572ff1a2b3d Mon Sep 17 00:00:00 2001 From: Future-Outlier Date: Wed, 20 Nov 2024 12:45:43 +0800 Subject: [PATCH] lint Signed-off-by: Future-Outlier --- .../data_types_and_io/data_types_and_io/pydantic_basemodel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/data_types_and_io/data_types_and_io/pydantic_basemodel.py b/examples/data_types_and_io/data_types_and_io/pydantic_basemodel.py index b6b4bdebd..0242e0b54 100644 --- a/examples/data_types_and_io/data_types_and_io/pydantic_basemodel.py +++ b/examples/data_types_and_io/data_types_and_io/pydantic_basemodel.py @@ -97,5 +97,4 @@ def basemodel_wf(x: int, y: int) -> (Datum, FlyteTypes): # Run the workflow locally if __name__ == "__main__": - result = basemodel_wf(x=10, y=20) - print(result) + basemodel_wf(x=10, y=20)