mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
9 lines
106 B
Python
9 lines
106 B
Python
import datetime
|
|
|
|
# qualified
|
|
datetime.date.today()
|
|
|
|
from datetime import date
|
|
|
|
# unqualified
|
|
date.today()
|