Skip to content

Commit

Permalink
fix search_returning arg type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariana Barzinpour committed Oct 9, 2024
1 parent 66f4374 commit 7c0207e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacube/index/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -1763,7 +1763,7 @@ def search_returning(self,
custom_offsets: Mapping[str, Offset] | None = None,
limit: int | None = None,
archived: bool | None = False,
order_by: str | Field | None = None,
order_by: Iterable[str | Field | None] = None,
**query: QueryField
) -> Iterable[tuple]:
"""
Expand Down

0 comments on commit 7c0207e

Please sign in to comment.