We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I hope this example code is explicit enough
class ERROR: pass class B: def __init__(self): super(B, self).__init__() self.build_element() def build_element(self): return ERROR('body') def dom_ready(): b = B() return b # == ERROR()