From 8128449879c557e72161584c2e383608e48219a2 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 24 May 2024 18:41:46 +0200 Subject: [PATCH] Fix rc pylint warning in MQTT (#118050) --- homeassistant/components/mqtt/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/mqtt/client.py b/homeassistant/components/mqtt/client.py index e6e4bb52049..0261512fe99 100644 --- a/homeassistant/components/mqtt/client.py +++ b/homeassistant/components/mqtt/client.py @@ -548,7 +548,7 @@ class MQTT: # Remove this once # https://github.com/eclipse/paho.mqtt.python/pull/843 # is available. - sock = sock._socket # noqa: SLF001 + sock = sock._socket # pylint: disable=protected-access new_buffer_size = PREFERRED_BUFFER_SIZE while True: