mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 05:35:11 +02:00
Update trend to use async_add_executor_job (#41454)
This commit is contained in:
@@ -203,7 +203,7 @@ class SensorTrend(BinarySensorEntity):
|
||||
return
|
||||
|
||||
# Calculate gradient of linear trend
|
||||
await self.hass.async_add_job(self._calculate_gradient)
|
||||
await self.hass.async_add_executor_job(self._calculate_gradient)
|
||||
|
||||
# Update state
|
||||
self._state = (
|
||||
|
Reference in New Issue
Block a user