1
0
Fork 0
mirror of synced 2024-06-02 18:44:59 +12:00

whitespace

This commit is contained in:
Nick Sweeting 2019-03-30 17:59:56 -04:00
parent 880b425df6
commit ac9fed06fd

View file

@ -386,6 +386,7 @@ def parse_date(date: Any) -> Optional[datetime]:
if EARLIEST_POSSIBLE < timestamp < LATEST_POSSIBLE:
# number is seconds
return datetime.fromtimestamp(timestamp)
elif EARLIEST_POSSIBLE * 1000 < timestamp < LATEST_POSSIBLE * 1000:
# number is milliseconds
return datetime.fromtimestamp(timestamp / 1000)