from elements.element import Element class Group(Element): def __enter__(self): self.view_stack.append(self.view) def __exit__(self, *_): self.view_stack.pop()