mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
12 lines
179 B
Python
12 lines
179 B
Python
import datetime
|
|
|
|
# qualified
|
|
datetime.datetime.utcnow()
|
|
|
|
from datetime import datetime
|
|
|
|
# unqualified
|
|
datetime.utcnow()
|
|
|
|
# uses `astimezone` method
|
|
datetime.utcnow().astimezone()
|