Seems like an obvious question, but I can't find the answer.
In Python, how do I initialise class data (not instance attributes).
class MyClass:
DATA = MyClass()
Doesn't work, because MyClass() isn't defined yet.
class MyClass:
pass
MyClass.DATA = MyClass()
Is confusing to the human reader, linter, IDE and autocomplete.
Is there a more standard way of doing this?