File tree Expand file tree Collapse file tree
packages/google-cloud-storage/google/cloud/storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ def has_entity(self, entity):
258258 :type entity: :class:`_ACLEntity`
259259 :param entity: The entity to check for existence in this ACL.
260260
261- :rtype: boolean
261+ :rtype: bool
262262 :returns: True of the entity exists in the ACL.
263263 """
264264 self ._ensure_loaded ()
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ def exists(self, client=None):
254254 :param client: Optional. The client to use. If not passed, falls back
255255 to the ``client`` stored on the blob's bucket.
256256
257- :rtype: boolean
257+ :rtype: bool
258258 :returns: True if the blob exists in Cloud Storage.
259259 """
260260 client = self ._require_client (client )
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def exists(self, client=None):
134134 :param client: Optional. The client to use. If not passed, falls back
135135 to the ``client`` stored on the current bucket.
136136
137- :rtype: boolean
137+ :rtype: bool
138138 :returns: True if the bucket exists in Cloud Storage.
139139 """
140140 client = self ._require_client (client )
@@ -720,7 +720,7 @@ def versioning_enabled(self):
720720 See: https://cloud.google.com/storage/docs/object-versioning for
721721 details.
722722
723- :rtype: boolean
723+ :rtype: bool
724724 :returns: True if enabled, else False.
725725 """
726726 versioning = self ._properties .get ('versioning' , {})
You can’t perform that action at this time.
0 commit comments