Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(storage): fix documentation of max_result parameter in list_blob #43

Merged
merged 1 commit into from Feb 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions google/cloud/storage/bucket.py
Expand Up @@ -885,9 +885,7 @@ def list_blobs(

:type max_results: int
:param max_results:
(Optional) The maximum number of blobs in each page of results
from this request. Non-positive values are ignored. Defaults to
a sensible value set by the API.
(Optional) The maximum number of blobs to return.

:type page_token: str
:param page_token:
Expand Down
4 changes: 1 addition & 3 deletions google/cloud/storage/client.py
Expand Up @@ -508,9 +508,7 @@ def list_blobs(
The bucket resource to pass or name to create.

max_results (int):
(Optional) The maximum number of blobs in each page of results
from this request. Non-positive values are ignored. Defaults to
a sensible value set by the API.
(Optional) The maximum number of blobs to return.

page_token (str):
(Optional) If present, return the next batch of blobs, using the
Expand Down