From 216daccd8dc4b8965e8a70858abbc02fcca3efad Mon Sep 17 00:00:00 2001 From: Luke Bonaccorsi Date: Mon, 11 Sep 2023 16:52:35 +0100 Subject: [PATCH] Fix incorrect bracket --- README.md | 2 +- custom_components/robovac/tuyalocalapi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba7faf9..5eccc29 100644 --- a/README.md +++ b/README.md @@ -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/Ko–Fi-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 diff --git a/custom_components/robovac/tuyalocalapi.py b/custom_components/robovac/tuyalocalapi.py index d981416..77639db 100644 --- a/custom_components/robovac/tuyalocalapi.py +++ b/custom_components/robovac/tuyalocalapi.py @@ -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