From 1f0a83ec7d0c4d1ae82005759823238164c4cc03 Mon Sep 17 00:00:00 2001 From: bittles Date: Sat, 31 Dec 2022 11:20:28 -0500 Subject: [PATCH] fix typo --- custom_components/ecovacs/sucksbumper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/ecovacs/sucksbumper.py b/custom_components/ecovacs/sucksbumper.py index 977ab57..55f4011 100644 --- a/custom_components/ecovacs/sucksbumper.py +++ b/custom_components/ecovacs/sucksbumper.py @@ -948,7 +948,7 @@ class EcoVacsXMPP(ClientXMPP): def _handle_ctl(self, message): the_good_part = message.get_payload()[0][0] as_dict = self._ctl_to_dict(the_good_part) - if message.get_payload([0][1]: + if message.get_payload()[0][1]: the_other_part = message.get_payload()[0][1] other_dict = self._ctl_to_dict(the_other_part) _LOGGER.debug("handle_ctl called with[0][1] the other part:") @@ -957,7 +957,7 @@ class EcoVacsXMPP(ClientXMPP): _LOGGER.debug(other_dict) _LOGGER.debug("end of the_other_part") - if message.get_payload([1][0]: + if message.get_payload()[1][0]: the_another_part = message.get_payload()[1][0] another_dict = self._ctl_to_dict(the_another_part) _LOGGER.debug("handle_ctl called with[1][0] the another part:")