Skip to content

Commit 4de4607

Browse files
committed
mypy fix
1 parent c5db8c4 commit 4de4607

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google/cloud/bigquery/query.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,7 @@ def num_dml_affected_rows(self):
13111311
return int(num_dml_affected_rows)
13121312

13131313
@property
1314-
def created(self) -> Optional[datetime.datetime]:
1314+
def created(self):
13151315
"""Datetime at which the job was created.
13161316
13171317
See:
@@ -1326,7 +1326,7 @@ def created(self) -> Optional[datetime.datetime]:
13261326
return _helpers._datetime_from_microseconds(int(millis) * 1000.0)
13271327

13281328
@property
1329-
def started(self) -> Optional[datetime.datetime]:
1329+
def started(self):
13301330
"""Datetime at which the job was started.
13311331
13321332
See:
@@ -1341,7 +1341,7 @@ def started(self) -> Optional[datetime.datetime]:
13411341
return _helpers._datetime_from_microseconds(int(millis) * 1000.0)
13421342

13431343
@property
1344-
def ended(self) -> Optional[datetime.datetime]:
1344+
def ended(self):
13451345
"""Datetime at which the job finished.
13461346
13471347
See:

0 commit comments

Comments
 (0)