ettoc00

Results 1 comments of ettoc00

Something like this? ```python def children(self: BaseParser): return [ Element(element=child, url=self.url, default_encoding=self.default_encoding) for child in self.element.getchildren() ] ```