Skip to content

Commit 33e4336

Browse files
Genesis929tswast
andauthored
Update google/cloud/bigquery/table.py
Co-authored-by: Tim Sweña (Swast) <[email protected]>
1 parent 7200dad commit 33e4336

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
@@ -1921,17 +1921,17 @@ def slot_millis(self) -> Optional[int]:
19211921

19221922
@property
19231923
def created(self) -> Optional[datetime.datetime]:
1924-
"""Datetime at which the job was created."""
1924+
"""If representing query results, the creation time of the associated query."""
19251925
return self._job_created
19261926

19271927
@property
19281928
def started(self) -> Optional[datetime.datetime]:
1929-
"""Datetime at which the job was started."""
1929+
"""If representing query results, the start time of the associated query."""
19301930
return self._job_started
19311931

19321932
@property
19331933
def ended(self) -> Optional[datetime.datetime]:
1934-
"""Datetime at which the job finished."""
1934+
"""If representing query results, the end time of the associated query."""
19351935
return self._job_ended
19361936

19371937
def _is_almost_completely_cached(self):

0 commit comments

Comments
 (0)