Skip to content

Commit 234a3fd

Browse files
committed
remove property setter as it is read only
1 parent 97f0251 commit 234a3fd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

google/cloud/bigquery/schema.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -395,11 +395,6 @@ def timestamp_precision(self):
395395
"""
396396
return _helpers._int_or_none(self._properties.get("timestampPrecision"))
397397

398-
@timestamp_precision.setter
399-
def timestamp_precision(self, value: Optional[int]):
400-
value = _helpers._isinstance_or_raise(value, int, none_allowed=True)
401-
self._properties["timestampPrecision"] = value
402-
403398
def to_api_repr(self) -> dict:
404399
"""Return a dictionary representing this schema field.
405400

0 commit comments

Comments
 (0)