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

10 lines
165 B
Python

from typing import TYPE_CHECKING
from django.db.models import ForeignKey
if TYPE_CHECKING:
from pathlib import Path
class Foo:
var = ForeignKey["Path"]()