ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F401_32.py

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"): ...