mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
276 B
276 B
Classes shadowing
Implicit error
class C: ...
C = 1 # error: "Implicit shadowing of class `C`; annotate to make it explicit if this is intentional"
Explicit
No diagnostic is raised in the case of explicit shadowing:
class C: ...
C: int = 1