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

17 lines
274 B
Python

from typing import ParamSpec, TypeVar, TypeVarTuple
T = TypeVar("T") # OK
TTuple = TypeVarTuple("TTuple") # OK
P = ParamSpec("P") # OK
_T = TypeVar("_T") # OK
_TTuple = TypeVarTuple("_TTuple") # OK
_P = ParamSpec("_P") # OK
def f():
T = TypeVar("T") # OK