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

14 lines
135 B
Python

"""
Test that shadowing a global with a class attribute does not produce a
warning.
"""
import fu
class bar:
fu = 1
print(fu)