diff --git a/stere/areas/repeating.py b/stere/areas/repeating.py index f6096892..6c8c52be 100644 --- a/stere/areas/repeating.py +++ b/stere/areas/repeating.py @@ -57,7 +57,7 @@ def __init__(self, root, repeater): self.repeater = repeater self.repeater_name = type(self.repeater).__name__ - def new_container(self) -> typing.List: + def new_container(self) -> typing.Any: """Must return an object to contain results from Repeater.children() By default a list is returned. @@ -98,7 +98,7 @@ def _all_roots(self): ) return all_roots - def children(self) -> typing.List: + def children(self) -> typing.Any: """Find all instances of the root, then return a collection containing children built from those roots.