mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
12 lines
221 B
Python
12 lines
221 B
Python
import datetime
|
|
|
|
# qualified
|
|
datetime.datetime.utcfromtimestamp(1234)
|
|
|
|
from datetime import datetime
|
|
|
|
# unqualified
|
|
datetime.utcfromtimestamp(1234)
|
|
|
|
# uses `astimezone` method
|
|
datetime.utcfromtimestamp(1234).astimezone()
|