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

16 lines
311 B
Python

from typing import no_type_check
# Errors
@no_type_check
class C:
def f(self, arg: "this isn't python") -> "this isn't python either":
x: "this also isn't python" = 1
# No errors
@no_type_check
def f(arg: "this isn't python") -> "this isn't python either":
x: "this also isn't python" = 0