Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions gcloud/storage/bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ def __init__(self, client, name=None):
def __repr__(self):
return '<Bucket: %s>' % self.name

@property
def client(self):
"""The client bound to this bucket."""
return self._client

def blob(self, blob_name, chunk_size=None):
"""Factory constructor for blob object.

Expand Down Expand Up @@ -197,11 +202,6 @@ def path(self):

return self.path_helper(self.name)

@property
def client(self):
"""The client bound to this bucket."""
return self._client

def get_blob(self, blob_name, client=None):
"""Get a blob object by name.

Expand Down