Fix incorrect bracket

This commit is contained in:
Luke Bonaccorsi 2023-09-11 16:52:35 +01:00
parent f8a2e3ca2e
commit 216daccd8d
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
[![Sponsor me on Github Sponsors](https://img.shields.io/badge/Sponsor-ea4aaa?style=for-the-badge&logo=github-sponsors&logoColor=%23EA4AAA&labelColor=white)](https://github.com/sponsors/CodeFoodPixels)
[![Tip me through ko-fi](https://img.shields.io/badge/KoFi-FF5E5B?style=for-the-badge&logo=kofi&logoColor=%23FF5E5B&labelColor=white)](https://ko-fi.com/O5O3O08PA)
[![Tip me through PayPal](https://img.shields.io/badge/Paypal.me-00457C?style=for-the-badge&logo=paypal&logoColor=%2300457C&labelColor=white)](https://paypal.me/CodeFoodPixels)
[![Tip me through Monzo](https://img.shields.io/badge/Monzo.me-14233C?style=for-the-badge&logo=monzo&logoColor=%2314233C&labelColor=white)](https://monzo.me/lukebonaccorsi)
[![Tip me through Monzo](https://img.shields.io/badge/Monzo.me-14233C?style=for-the-badge&logo=monzo&logoColor=%2314233C&labelColor=white)](https://monzo.me/codefoodpixels)
# Eufy RobovVac control for Home Assistant

View File

@ -722,7 +722,7 @@ class TuyaDevice:
self.last_pong = time.time()
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"])
@property