-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Storage: Make 'Blob.bucket' a readonly property. #9113
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
Storage: Make 'Blob.bucket' a readonly property. #9113
Conversation
def bucket(self): | ||
"""Bucket which contains the object. | ||
|
||
:rtype: :class:`~google.cloud.storage.bucket.Bucket` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use Google-style docstrings on new methods.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems cleaner to make that a task to convert whole modules.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am happy if it matches the file in which it is added. Agree that we likely have a backlog task to do this though.
Unit test failures due to yesterday's |
def bucket(self): | ||
"""Bucket which contains the object. | ||
|
||
:rtype: :class:`~google.cloud.storage.bucket.Bucket` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am happy if it matches the file in which it is added. Agree that we likely have a backlog task to do this though.
Closes #9107.