We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28f7fc commit b803e41Copy full SHA for b803e41
plugwise/helper.py
@@ -87,8 +87,7 @@ def _find(xml_in: etree, locator: str) -> etree:
87
def _findall(xml_in: etree, locator: str) -> list[etree]:
88
"""Helper-function for use of etree.findall()."""
89
if xml_in is not None:
90
- xml_list: list[etree] = xml_in.findall(locator)
91
- return xml_list
+ return xml_in.findall(locator)
92
93
LOGGER.warning(
94
"XML data unexpectedly not present, processing stopped. Please retry."
0 commit comments