fix unused vars
C++ / fmt (pull_request) Successful in 7s
Python / static (pull_request) Failing after 2s
JS/TS / fmt (pull_request) Successful in 25s
JS/TS / lint (pull_request) Successful in 21s
Rust / fmt (pull_request) Successful in 55s
Rust / build (pull_request) Successful in 2m22s
Python / verify (pull_request) Failing after 2m41s
Rust / clippy (pull_request) Successful in 1m45s
C++ / build (pull_request) Successful in 3m38s
C++ / clang-tidy (pull_request) Successful in 4m46s

This commit is contained in:
2026-08-16 11:23:57 +02:00
parent da21675f03
commit ba567efc22
+2 -2
View File
@@ -145,7 +145,7 @@ def _process_battery_notification(dev, n) -> bool:
if feature == SupportedFeature.SOLAR_DASHBOARD: if feature == SupportedFeature.SOLAR_DASHBOARD:
if n.data[5:9] == b"GOOD": if n.data[5:9] == b"GOOD":
charge, lux, adc = struct.unpack("!BHH", n.data[:5]) charge, lux, _ = struct.unpack("!BHH", n.data[:5])
status = BatteryStatus.DISCHARGING status = BatteryStatus.DISCHARGING
if n.address == 0x10 and lux > 200: if n.address == 0x10 and lux > 200:
status = BatteryStatus.RECHARGING status = BatteryStatus.RECHARGING
@@ -437,7 +437,7 @@ class _ListenerRegistry:
is None is None
): ):
for ( for (
other_path, _,
(other_obj, _other_listener), (other_obj, _other_listener),
) in self._entries.items(): ) in self._entries.items():
if other_obj.isDevice: if other_obj.isDevice: