Skip to content

Commit d786b3f

Browse files
committed
lint
1 parent 4281ef5 commit d786b3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/bigquery/job/load.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ def column_name_character_map(self, value: Optional[str]):
760760
self._set_sub_prop("columnNameCharacterMap", value)
761761

762762
@property
763-
def timestamp_target_precision(self) -> Optional[list[int]]:
763+
def timestamp_target_precision(self) -> Optional[List[int]]:
764764
"""Optional[list[int]]: [Private Preview] Precisions (maximum number of
765765
total digits in base 10) for seconds of TIMESTAMP types that are
766766
allowed to the destination table for autodetection mode.
@@ -783,7 +783,7 @@ def timestamp_target_precision(self) -> Optional[list[int]]:
783783
return self._get_sub_prop("timestampTargetPrecision")
784784

785785
@timestamp_target_precision.setter
786-
def timestamp_target_precision(self, value: Optional[list[int]]):
786+
def timestamp_target_precision(self, value: Optional[List[int]]):
787787
if value is not None:
788788
self._set_sub_prop("timestampTargetPrecision", value)
789789
else:

0 commit comments

Comments
 (0)