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 61021e8 commit 00288e1Copy full SHA for 00288e1
plugwise_usb/nodes/sense.py
@@ -127,11 +127,12 @@ async def _sense_report(self, response: PlugwiseResponse) -> bool:
127
SENSE_HUMIDITY_MULTIPLIER * (response.humidity.value / 65536)
128
- SENSE_HUMIDITY_OFFSET
129
)
130
- await self.publish_feature_update_to_subscribers(
131
- NodeFeature.SENSE, self._sense_statistics
132
- )
133
report_received_2 = True
134
-
+
+ await self.publish_feature_update_to_subscribers(
+ NodeFeature.SENSE, self._sense_statistics
+ )
135
136
return report_received_1 and report_received_2
137
138
@raise_not_loaded
0 commit comments