Skip to content

Commit e09eb83

Browse files
committed
Correct Python formatting
Signed-off-by: Sven Rueß <[email protected]>
1 parent 11d8029 commit e09eb83

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cmk/base/legacy_checks/ups_out_voltage.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515

1616

1717
def discover_ups_out_voltage(info: list[list[str]]) -> Iterable[tuple[str, dict]]:
18-
for item, value, in info:
18+
for (
19+
item,
20+
value,
21+
) in info:
1922
try:
2023
value = int(value)
2124
except ValueError:

0 commit comments

Comments
 (0)