Skip to content

Commit

Permalink
tag args as optional in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Nov 14, 2023
1 parent b8efc7b commit 7f18333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vecs/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ def delete(
Deletes vectors from the collection by matching filters or ids.
Args:
ids (Iterable[str]): An iterable of vector identifiers.
filters (Metadata): A dictionary of metadata key-value pairs to match.
ids (Iterable[str], optional): An iterable of vector identifiers.
filters (Optional[Dict], optional): Filters to apply to the search. Defaults to None.
Returns:
List[str]: A list of the identifiers of the deleted vectors.
Expand Down

0 comments on commit 7f18333

Please sign in to comment.