Skip to content

Commit

Permalink
Revert docstrings pending docs PR
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Jul 30, 2020
1 parent de919fb commit ef8948d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions optimade/server/entry_collections/entry_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class EntryCollection(ABC):
""" Backend-agnostic base class for querying collections of
`EntryResource`. """
[`EntryResource`][optimade.models.EntryResource]s. """

def __init__(
self,
Expand Down Expand Up @@ -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`).
"""

Expand Down

0 comments on commit ef8948d

Please sign in to comment.