Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
review comments
  • Loading branch information
surbhigarg92 committed Mar 12, 2025
commit 5b40f761240429cb01aaf080611b0ea1ce6949bc
1 change: 0 additions & 1 deletion google/cloud/spanner_v1/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ def __init__(
raise TypeError(
"default_transaction_options must be an instance of DefaultTransactionOptions"
)

self._default_transaction_options = default_transaction_options

@property
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/spanner_v1/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ def run_in_transaction(self, func, *args, **kw):
from being recorded in change streams with the DDL option `allow_txn_exclusion=true`.
This does not exclude the transaction from being recorded in the change streams with
the DDL option `allow_txn_exclusion` being false or unset.
"isolation_level" sets the isolation level for transaction.
"isolation_level" sets the isolation level for the transaction.

:rtype: Any
:returns: The return value of ``func``.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/spanner_v1/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def run_in_transaction(self, func, *args, **kw):
from being recorded in change streams with the DDL option `allow_txn_exclusion=true`.
This does not exclude the transaction from being recorded in the change streams with
the DDL option `allow_txn_exclusion` being false or unset.
"isolation_level" sets the isolation level for transaction.
"isolation_level" sets the isolation level for the transaction.

:rtype: Any
:returns: The return value of ``func``.
Expand Down