Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix forgotten attribute for faceting comments after review #313

Merged
merged 1 commit into from
Aug 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions meilisearch/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def get_all_update_status(self) -> List[Dict[str, Any]]:
Returns
-------
update:
List of all enqueued and processed actions of the index.
List of all enqueued, processing, processed or failed actions of the index.

Raises
------
Expand Down Expand Up @@ -982,7 +982,7 @@ def get_filterable_attributes(self) -> List[str]:
Returns
-------
settings:
List containing the attributes for faceting of the index
List containing the filterable attributes of the index

Raises
------
Expand All @@ -1000,7 +1000,7 @@ def update_filterable_attributes(self, body: List[str]) -> Dict[str, int]:
Parameters
----------
body:
List containing the attributes for faceting.
List containing the filterable attributes.

Returns
-------
Expand Down