mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
8 lines
132 B
Python
8 lines
132 B
Python
from datetime import datetime
|
|
from typing import no_type_check
|
|
|
|
|
|
# No errors
|
|
|
|
@no_type_check
|
|
def f(a: datetime, b: "datetime"): ...
|