From 72768c272e965f8a038bbdaef0c044bd4b137665 Mon Sep 17 00:00:00 2001 From: Lorenzo <57605930+lmtr0@users.noreply.github.com> Date: Fri, 18 Apr 2025 21:46:29 +0000 Subject: [PATCH] fix: removed invalid syntax --- examples/pipelines/providers/openai_manifold_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pipelines/providers/openai_manifold_pipeline.py b/examples/pipelines/providers/openai_manifold_pipeline.py index d1303a8..84bc5cd 100644 --- a/examples/pipelines/providers/openai_manifold_pipeline.py +++ b/examples/pipelines/providers/openai_manifold_pipeline.py @@ -73,7 +73,7 @@ class Pipeline: "name": model["name"] if "name" in model else model["id"], } for model in models["data"] - if any(substring in model["id"] for substring in allowed_models): + if any(substring in model["id"] for substring in allowed_models) ] except Exception as e: