Skip to content

Commit 72768c2

Browse files
committed
fix: removed invalid syntax
1 parent f825066 commit 72768c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pipelines/providers/openai_manifold_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_openai_models(self):
7373
"name": model["name"] if "name" in model else model["id"],
7474
}
7575
for model in models["data"]
76-
if any(substring in model["id"] for substring in allowed_models):
76+
if any(substring in model["id"] for substring in allowed_models)
7777
]
7878

7979
except Exception as e:

0 commit comments

Comments
 (0)