This repository was archived by the owner on Jan 9, 2023. It is now read-only.
This repository was archived by the owner on Jan 9, 2023. It is now read-only.
Unnecessary dependency on Python lxml library #1502
Open
Description
Changes made in PR #1364 to address #280 introduced a dependency on lxml
to accomplish what the Python standard library's xml.etree.ElementTree
could do just as well. The syntax for usage is identical, the import only needs changed to import xml.etree.ElementTree as etree
.
The specific commit in question is 7cf941a
Subsequent changes were made in PR #1475 to accommodate this additional dependency: