Changed type 'list' to 'node'

This commit is contained in:
2023-04-19 12:53:45 +02:00
parent 1548d3a915
commit c2b4be956a

View File

@@ -59,7 +59,7 @@ def xpath(source: str, xpath: str) -> str:
result_string = ""
for e in result:
result_string += etree.tostring(e, pretty_print=True).decode() + "\n"
return result_string, "list"
return result_string, "node"