Implemented showing returned type (#112) #148

Merged
bema merged 4 commits from bema/func/show_data_types into master 2023-04-19 13:33:41 +02:00
Showing only changes of commit c2b4be956a - Show all commits

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"