Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 5e875dc

Browse files
1 parent 14f18f3 commit 5e875dc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

google/cloud/spanner_v1/_helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ def parse_num(s: str, suffix: str) -> int:
343343

344344
return cls(months=total_months, days=days, nanos=nanos)
345345

346+
346347
def _make_value_pb(value):
347348
"""Helper for :func:`_make_list_value_pbs`.
348349

tests/system/test_session_api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2973,7 +2973,9 @@ def insert_test1(transaction):
29732973
)
29742974

29752975
def insert_test2(transaction):
2976-
keys, placeholders = get_param_info(["key", "create_time", "expiry_time"], database_dialect)
2976+
keys, placeholders = get_param_info(
2977+
["key", "create_time", "expiry_time"], database_dialect
2978+
)
29772979
transaction.execute_update(
29782980
f"""
29792981
INSERT INTO IntervalTable (key, create_time, expiry_time)
@@ -3078,7 +3080,6 @@ def test_interval_array_param(transaction):
30783080

30793081
assert intervals[3] is None
30803082

3081-
30823083
def test_interval_array_cast(transaction):
30833084
results = list(
30843085
transaction.execute_sql(

0 commit comments

Comments
 (0)