Skip to content

Commit

Permalink
Make extra args named only
Browse files Browse the repository at this point in the history
  • Loading branch information
sanders41 committed Jun 11, 2024
1 parent b38e9fa commit 79db038
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions meilisearch_python_sdk/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -1224,6 +1224,7 @@ async def facet_search(
async def search_similar_documents(
self,
id: str,
*,
offset: int | None = None,
limit: int | None = None,
filter: str | None = None,
Expand Down Expand Up @@ -5290,6 +5291,7 @@ def facet_search(
def search_similar_documents(
self,
id: str,
*,
offset: int | None = None,
limit: int | None = None,
filter: str | None = None,
Expand Down

0 comments on commit 79db038

Please sign in to comment.