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

7 lines
175 B
Python

"""If an imported name is redefined by a class statement which also uses that name in the bases list, no warning is emitted."""
from fu import bar
class bar(bar):
pass