Skip to content

Commit f28f7fc

Browse files
committed
Revert "Add #pragma: no cover"
This reverts commit 33916e9.
1 parent 7d01f79 commit f28f7fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ def _findall(xml_in: etree, locator: str) -> list[etree]:
9090
xml_list: list[etree] = xml_in.findall(locator)
9191
return xml_list
9292

93-
LOGGER.warning( # pragma: no cover
93+
LOGGER.warning(
9494
"XML data unexpectedly not present, processing stopped. Please retry."
9595
)
96-
raise XMLDataMissingError # pragma: no cover
96+
raise XMLDataMissingError
9797

9898

9999
def update_helper(

0 commit comments

Comments
 (0)