mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
7 lines
175 B
Python
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
|