From df5285f68138f066c92aabcc8d6deae8fcc2fba0 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 1 Jun 2022 16:49:43 +0200 Subject: [PATCH] Improve pylint disable rule in zha (#72835) --- .../components/zha/core/channels/manufacturerspecific.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/channels/manufacturerspecific.py b/homeassistant/components/zha/core/channels/manufacturerspecific.py index 3bcab38e026..0ec9c7c2f4e 100644 --- a/homeassistant/components/zha/core/channels/manufacturerspecific.py +++ b/homeassistant/components/zha/core/channels/manufacturerspecific.py @@ -60,7 +60,7 @@ class OppleRemote(ZigbeeChannel): """Initialize Opple channel.""" super().__init__(cluster, ch_pool) if self.cluster.endpoint.model == "lumi.motion.ac02": - self.ZCL_INIT_ATTRS = { # pylint: disable=C0103 + self.ZCL_INIT_ATTRS = { # pylint: disable=invalid-name "detection_interval": True, "motion_sensitivity": True, "trigger_indicator": True,