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

Commit dc3c498

Browse files
committed
lint
1 parent 253ac1f commit dc3c498

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

google/cloud/bigquery/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class SchemaField(object):
200200
timestamp_precision: Optional[int]
201201
Precision (maximum number of total digits in base 10) for seconds
202202
of TIMESTAMP type.
203-
203+
204204
Possible values include:
205205
206206
- 6 (Default, for TIMESTAMP type with microsecond precision)
@@ -386,7 +386,7 @@ def policy_tags(self):
386386
"""
387387
resource = self._properties.get("policyTags")
388388
return PolicyTagList.from_api_repr(resource) if resource is not None else None
389-
389+
390390
@property
391391
def timestamp_precision(self):
392392
"""Optional[int]: Subfields contained in this field.

tests/unit/test_schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ def test_to_api_repr_w_timestamp_precision(self):
207207
"timestampPrecision": 3,
208208
},
209209
)
210+
210211
def test_from_api_repr(self):
211212
field = self._get_target_class().from_api_repr(
212213
{

0 commit comments

Comments
 (0)