We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b68730 commit 87746b1Copy full SHA for 87746b1
src/routers/openml/datasets.py
@@ -183,7 +183,7 @@ def quality_clause(quality: str, range_: str | None) -> str:
183
{number_classes_filter} {number_missing_values_filter}
184
AND IFNULL(cs.`status`, 'in_preparation') IN ({where_status})
185
LIMIT {pagination.limit} OFFSET {pagination.offset}
186
- """, # noqa: S608
+ """,
187
# I am not sure how to do this correctly without an error from Bandit here.
188
# However, the `status` input is already checked by FastAPI to be from a set
189
# of given options, so no injection is possible (I think). The `current_status`
0 commit comments