mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-19 03:50:02 +00:00
8 lines
148 B
Python
8 lines
148 B
Python
![]() |
# pyright: reportPrivateUsage=false
|
||
|
|
||
|
from typing import Union
|
||
|
|
||
|
from lxml import etree
|
||
|
|
||
|
def parse_xml(xml: Union[str, bytes]) -> etree._Element: ...
|