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

16 lines
186 B
Python

import typing
# Errors
@typing.no_type_check
class C:
def f(self, arg: "B") -> "S":
x: "B" = 1
# No errors
@typing.no_type_check
def f(arg: "A") -> "R":
x: "A" = 1