From fcc1d17a62e98ab1d2ef38f42102491217fee74a Mon Sep 17 00:00:00 2001 From: Fabian Peter Hammerle Date: Sat, 7 Oct 2023 10:09:41 +0200 Subject: [PATCH] pylint: disable "too-many-arguments" warning locally --- switchbot_mqtt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/switchbot_mqtt/__init__.py b/switchbot_mqtt/__init__.py index 3f978b2..c5d8b87 100644 --- a/switchbot_mqtt/__init__.py +++ b/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,