Skip to content

Commit

Permalink
adjusting syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Arceo <[email protected]>
  • Loading branch information
franciscojavierarceo committed Feb 27, 2025
1 parent d8d0416 commit 7821b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@ def retrieve_online_documents_v2(
distance_metric: The distance metric to use for retrieval.
query_string: The query string to retrieve the closest document features using keyword search (bm25).
"""
assert query or query_string, "Either query or query_string must be provided."
assert query is not None or query_string is not None, "Either query or query_string must be provided."

(
available_feature_views,
Expand Down

0 comments on commit 7821b1b

Please sign in to comment.