|
|
@ -212,7 +212,7 @@ class Container(Item[V]): |
|
|
|
return bool(self.__dispatchable) |
|
|
|
|
|
|
|
def is_persistent(self) -> bool: |
|
|
|
return self.is_dispatchable() and all(c.is_persistent() for c in self.children) |
|
|
|
return all(c.is_persistent() for c in self.children) |
|
|
|
|
|
|
|
def __init_subclass__(cls) -> None: |
|
|
|
super().__init_subclass__() |
|
|
|