Browse Source

pylint: disable "too-many-arguments" warning locally

Fabian Peter Hammerle 7 months ago
parent
commit
fcc1d17a62
1 changed files with 1 additions and 1 deletions
  1. 1 1
      switchbot_mqtt/__init__.py

+ 1 - 1
switchbot_mqtt/__init__.py

@@ -61,7 +61,7 @@ def _mqtt_on_connect(
     _CurtainMotor.mqtt_subscribe(mqtt_client=mqtt_client, settings=userdata)
 
 
-def _run(
+def _run(  # pylint: disable=too-many-arguments
     *,
     mqtt_host: str,
     mqtt_port: int,