Skip to content

Commit e82957f

Browse files
authored
Update typing of get_documents
Fix typing
1 parent 33b3ad2 commit e82957f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meilisearch/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def get_document(self, document_id: str, parameters: Optional[Dict[str, Any]] =
277277
f'{self.config.paths.index}/{self.uid}/{self.config.paths.document}/{document_id}?{parse.urlencode(parameters)}'
278278
)
279279

280-
def get_documents(self, parameters: Optional[Dict[str, Any]] = None) -> List[Dict[str, Any]]:
280+
def get_documents(self, parameters: Optional[Dict[str, Any]] = None) -> Dict[str, Any]:
281281
"""Get a set of documents from the index.
282282
283283
Parameters

0 commit comments

Comments
 (0)