No need extra function

This commit is contained in:
atse 2024-09-03 21:09:30 +08:00
parent 062094f7a8
commit 48907c02d1
1 changed files with 2 additions and 5 deletions

View File

@ -57,15 +57,12 @@ class Thermostat(QObject, metaclass=PropertyMeta):
"Encountered an error while polling for information from Thermostat.",
exc_info=True,
)
await self.handle_connection_error()
await self.end_session()
self.connection_error.emit()
return
self._update_params_task = asyncio.create_task(self.update_params())
await asyncio.sleep(self._update_s)
async def handle_connection_error(self):
await self.end_session()
self.connection_error.emit()
async def get_hw_rev(self):
return await self._client.hw_rev()