Skip to content

Commit

Permalink
Fix rc pylint warning in MQTT (home-assistant#118050)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored May 24, 2024
1 parent 3f7e57d commit 8128449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/mqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def _increase_socket_buffer_size(self, sock: SocketType) -> None:
# 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:
Expand Down

0 comments on commit 8128449

Please sign in to comment.