Skip to content

Commit

Permalink
docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsg committed Mar 24, 2021
1 parent 876d1f6 commit 55fc90a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions google/cloud/storage/blob.py
Expand Up @@ -3428,7 +3428,7 @@ def open(
:type mode: str
:param mode:
A mode string, as per standard Python `open()` semantics. The first
(Optional) A mode string, as per standard Python `open()` semantics.The first
character must be 'r', to open the blob for reading, or 'w' to open
it for writing. The second character, if present, must be 't' for
(unicode) text mode, or 'b' for bytes mode. If the second character
Expand All @@ -3446,13 +3446,13 @@ def open(
:type encoding: str
:param encoding:
For text mode only, the name of the encoding that the stream will
(Optional) For text mode only, the name of the encoding that the stream will
be decoded or encoded with. If omitted, it defaults to
locale.getpreferredencoding(False).
:type errors: str
:param errors:
For text mode only, an optional string that specifies how encoding
(Optional) For text mode only, an optional string that specifies how encoding
and decoding errors are to be handled. Pass 'strict' to raise a
ValueError exception if there is an encoding error (the default of
None has the same effect), or pass 'ignore' to ignore errors. (Note
Expand All @@ -3462,7 +3462,7 @@ def open(
:type newline: str
:param newline:
For text mode only, controls how line endings are handled. It can
(Optional) For text mode only, controls how line endings are handled. It can
be None, '', '\n', '\r', and '\r\n'. If None, reads use "universal
newline mode" and writes use the system default. See the Python
'io' module documentation for 'io.TextIOWrapper' for details.
Expand Down

0 comments on commit 55fc90a

Please sign in to comment.