ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F401_15.py
2023-09-20 08:38:27 +02:00

9 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"]()