Skip to content

Commit 9a85bf3

Browse files
committed
fix annotation
1 parent 7be87da commit 9a85bf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google/cloud/bigquery/table.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1920,17 +1920,17 @@ def slot_millis(self) -> Optional[int]:
19201920
return self._slot_millis
19211921

19221922
@property
1923-
def created(self) -> Optional[int]:
1923+
def created(self) -> Optional[datetime.datetime]:
19241924
"""Datetime at which the job was created."""
19251925
return self._job_created
19261926

19271927
@property
1928-
def started(self) -> Optional[int]:
1928+
def started(self) -> Optional[datetime.datetime]:
19291929
"""Datetime at which the job was started."""
19301930
return self._job_started
19311931

19321932
@property
1933-
def ended(self) -> Optional[int]:
1933+
def ended(self) -> Optional[datetime.datetime]:
19341934
"""Datetime at which the job finished."""
19351935
return self._job_ended
19361936

0 commit comments

Comments
 (0)