Files
KPK/v3.12/Lib/site-packages/qrcode/compat/etree.py
T
2026-06-23 15:20:56 +02:00

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