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

8 lines
196 B
Python

"""Test: ensure that we treat strings in `typing.Annotation` as type definitions."""
from pathlib import Path
from re import RegexFlag
from typing import Annotated
p: Annotated["Path", int] = 1