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