We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__dict__
cls
Minimal repro:
class Foo: @classmethod def foo(cls) -> None: cls.__dict__
Expected: No error Actual: Instance-only attribute __dict__ of class Foo is not visible on the class [missing-attribute]
Foo