GerapyAutoExtractor icon indicating copy to clipboard operation
GerapyAutoExtractor copied to clipboard

can't remove element

Open zhutuo opened this issue 5 years ago • 0 comments

此函数不起作用。 def remove_element(element: Element): """ remove child element from parent :param element: :return: """ if element is None: return p = element.getparent() if p is not None: p.remove(element)

zhutuo avatar Dec 17 '20 06:12 zhutuo