Don't create report task if not polling for it

This commit is contained in:
atse 2024-08-30 12:10:01 +08:00
parent f45d2c5c9e
commit 969a7be0cc

View File

@ -69,6 +69,7 @@ class Thermostat(QObject, metaclass=PropertyMeta):
fan_task = asyncio.create_task(self._client.get_fan())
pwm_task = asyncio.create_task(self._client.get_pwm())
pid_task = asyncio.create_task(self._client.get_pid())
if self._poll_for_report:
report_task = asyncio.create_task(self._client.report())
thermistor_task = asyncio.create_task(self._client.get_steinhart_hart())
postfilter_task = asyncio.create_task(self._client.get_postfilter())