5 lines
152 B
Python
5 lines
152 B
Python
try:
|
|
import lxml.etree as ET # type: ignore # noqa: F401
|
|
except ImportError:
|
|
import xml.etree.ElementTree as ET # type: ignore # noqa: F401
|