You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
此函数不起作用。
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)
The text was updated successfully, but these errors were encountered:
此函数不起作用。
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)
The text was updated successfully, but these errors were encountered: