group.py 189 B

1234567891011
  1. from elements.element import Element
  2. class Group(Element):
  3. def __enter__(self):
  4. self.view_stack.append(self.view)
  5. def __exit__(self, *_):
  6. self.view_stack.pop()