From 73e13147f61ff186e714937f32619c0102f4cd10 Mon Sep 17 00:00:00 2001 From: Chris Ioannidis <142539198+acse-ci223@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:58:21 +0000 Subject: [PATCH] Fixed linting --- bambulabs_api/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bambulabs_api/client.py b/bambulabs_api/client.py index 906610d..05985f7 100644 --- a/bambulabs_api/client.py +++ b/bambulabs_api/client.py @@ -48,7 +48,7 @@ def connect(self) -> None: self.client.connect(self.ip_address, 8883, 60) return None - def _on_connect(self, client, userdata, flags, rc) -> None: + def _on_connect(self, client, userdata, flags, rc) -> None: # pylint: disable=unused-argument # noqa """ _on_connect Callback function for when the client receives a CONNACK response from the server. @@ -110,7 +110,7 @@ def _rgb_to_color_name(self, rgb) -> str: color_name = f"0x{rgb}" return color_name - def _on_message(self, client, userdata, msg) -> None: + def _on_message(self, client, userdata, msg) -> None: # pylint: disable=unused-argument # noqa """ _on_message Callback function for when a PUBLISH message is received from the server.