Skip to content

Commit ff15f19

Browse files
fix(storage): fix documentation of max_result parameter in list_blob (#43)
1 parent 3849676 commit ff15f19

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

google/cloud/storage/bucket.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -885,9 +885,7 @@ def list_blobs(
885885
886886
:type max_results: int
887887
:param max_results:
888-
(Optional) The maximum number of blobs in each page of results
889-
from this request. Non-positive values are ignored. Defaults to
890-
a sensible value set by the API.
888+
(Optional) The maximum number of blobs to return.
891889
892890
:type page_token: str
893891
:param page_token:

google/cloud/storage/client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -508,9 +508,7 @@ def list_blobs(
508508
The bucket resource to pass or name to create.
509509
510510
max_results (int):
511-
(Optional) The maximum number of blobs in each page of results
512-
from this request. Non-positive values are ignored. Defaults to
513-
a sensible value set by the API.
511+
(Optional) The maximum number of blobs to return.
514512
515513
page_token (str):
516514
(Optional) If present, return the next batch of blobs, using the

0 commit comments

Comments
 (0)