Skip to content

Commit 788d1a4

Browse files
author
Gurov Ilya
authored
refactor(storage): erase excess return (#195)
1 parent e4990d0 commit 788d1a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/storage/bucket.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def from_string(cls, uri, client=None):
566566
>>> from google.cloud import storage
567567
>>> from google.cloud.storage.bucket import Bucket
568568
>>> client = storage.Client()
569-
>>> bucket = Bucket.from_string("gs://bucket",client)
569+
>>> bucket = Bucket.from_string("gs://bucket", client)
570570
"""
571571
scheme, netloc, path, query, frag = urlsplit(uri)
572572

@@ -911,7 +911,7 @@ def patch(
911911
self._properties["labels"][removed_label] = None
912912

913913
# Call the superclass method.
914-
return super(Bucket, self).patch(
914+
super(Bucket, self).patch(
915915
client=client,
916916
timeout=timeout,
917917
if_metageneration_match=if_metageneration_match,

0 commit comments

Comments
 (0)