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

15 lines
304 B
Python

from __future__ import annotations
# Test case for https://github.com/astral-sh/ruff/issues/1552
def f():
x = 0
list()[x:]
# Test case for https://github.com/astral-sh/ruff/issues/2603
def f():
KeyTupleT = tuple[str, ...]
keys_checked: set[KeyTupleT] = set()
return keys_checked