From 900160658488233f726f19acef00a06f6e20e45c Mon Sep 17 00:00:00 2001 From: Necroneco Date: Tue, 4 Mar 2025 22:01:41 +0800 Subject: [PATCH] fix pylint --- custom_components/xiaomi_home/cover.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/custom_components/xiaomi_home/cover.py b/custom_components/xiaomi_home/cover.py index 8e0e9fb..ce0a135 100644 --- a/custom_components/xiaomi_home/cover.py +++ b/custom_components/xiaomi_home/cover.py @@ -180,11 +180,16 @@ class Cover(MIoTServiceEntity, CoverEntity): self._attr_supported_features |= CoverEntityFeature.SET_POSITION self._prop_target_position = prop - if self._prop_status is None and self._prop_current_position is not None: + if ( + self._prop_status is None + and self._prop_current_position is not None + ): self.sub_prop_changed(prop=self._prop_current_position, handler=self.__current_position_changed) - def __current_position_changed(self, prop: MIoTSpecProperty, ctx: Any) -> None: + def __current_position_changed( + self, prop: MIoTSpecProperty, ctx: Any + ) -> None: if self._attr_is_opening or self._attr_is_closing: self._attr_is_opening = False self._attr_is_closing = False