Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
acse-ci223 committed Dec 12, 2023
1 parent a7f08a0 commit 73e1314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bambulabs_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 73e1314

Please sign in to comment.