Fix incorrect bracket
This commit is contained in:
parent
f8a2e3ca2e
commit
216daccd8d
|
|
@ -3,7 +3,7 @@
|
||||||
[](https://github.com/sponsors/CodeFoodPixels)
|
[](https://github.com/sponsors/CodeFoodPixels)
|
||||||
[](https://ko-fi.com/O5O3O08PA)
|
[](https://ko-fi.com/O5O3O08PA)
|
||||||
[](https://paypal.me/CodeFoodPixels)
|
[](https://paypal.me/CodeFoodPixels)
|
||||||
[](https://monzo.me/lukebonaccorsi)
|
[](https://monzo.me/codefoodpixels)
|
||||||
|
|
||||||
# Eufy RobovVac control for Home Assistant
|
# Eufy RobovVac control for Home Assistant
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -722,7 +722,7 @@ class TuyaDevice:
|
||||||
self.last_pong = time.time()
|
self.last_pong = time.time()
|
||||||
|
|
||||||
async def async_update_state(self, state_message, _):
|
async def async_update_state(self, state_message, _):
|
||||||
_LOGGER.info("Received updated state {}: {}").format(self, self._dps)
|
_LOGGER.info("Received updated state {}: {}".format(self, self._dps))
|
||||||
self._dps.update(state_message.payload["dps"])
|
self._dps.update(state_message.payload["dps"])
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue