Netgear fix missing await (#85574)

fix missing await
This commit is contained in:
starkillerOG
2023-01-10 00:02:31 +01:00
committed by GitHub
parent 069d8024a4
commit 77542fc842
+1 -1
View File
@@ -432,7 +432,7 @@ class NetgearRouterSensorEntity(NetgearRouterCoordinatorEntity, RestoreSensor):
if sensor_data is not None:
self._value = sensor_data.native_value
else:
self.coordinator.async_request_refresh()
await self.coordinator.async_request_refresh()
@callback
def async_update_device(self) -> None: