diff --git a/optimade/server/entry_collections/entry_collections.py b/optimade/server/entry_collections/entry_collections.py index f196ab44df..2ddb3d5ae1 100644 --- a/optimade/server/entry_collections/entry_collections.py +++ b/optimade/server/entry_collections/entry_collections.py @@ -16,7 +16,7 @@ class EntryCollection(ABC): """ Backend-agnostic base class for querying collections of - `EntryResource`. """ + [`EntryResource`][optimade.models.EntryResource]s. """ def __init__( self, @@ -65,13 +65,14 @@ def find( """ Fetches results and indicates if more data is available. - Also gives the total number of data available in the absence of [`page_limit`][optimade.server.query_params.EntryListingQueryParams.page_limit]. + Also gives the total number of data available in the absence of + [`page_limit`][optimade.server.query_params.EntryListingQueryParams.page_limit]. Parameters: params (EntryListingQueryParams): entry listing URL query params Returns: - Tuple[List[EntryResource], int, bool, set]: (`results`, `data_returned`, `more_data_available`, `fields`). + (`results`, `data_returned`, `more_data_available`, `fields`). """