Skip to content

Commit

Permalink
Docs/fixit: normalize docs for 'page_size' / 'max_results' / 'page_to…
Browse files Browse the repository at this point in the history
…ken' (#6842)
  • Loading branch information
tseaver authored Dec 13, 2018
1 parent 8cfac3f commit 5e79b6d
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,9 @@ def iter(self, headers_only=False, page_size=None):
:type page_size: int
:param page_size:
(Optional) Positive number specifying the maximum number of points
to return per page. This can be used to control how far the
iterator reads ahead.
(Optional) The maximum number of points in each page of results
from this request. Non-positive values are ignored. Defaults
to a sensible value set by the API.
:raises: :exc:`ValueError` if the query time interval has not been
specified.
Expand All @@ -450,7 +450,9 @@ def _build_query_params(self, headers_only=False, page_size=None):
:type page_size: int
:param page_size:
(Optional) A limit on the number of points to return per page.
(Optional) The maximum number of points in each page of results
from this request. Non-positive values are ignored. Defaults
to a sensible value set by the API.
"""
params = {"name": self._project_path, "filter_": self.filter}

Expand Down

0 comments on commit 5e79b6d

Please sign in to comment.