From b3a1491482ee8f4915a5513b527ab9fb6183fce4 Mon Sep 17 00:00:00 2001 From: Theb-1 Date: Tue, 9 Feb 2016 21:12:33 -0800 Subject: [PATCH] pylint: ignore 'too-many-arguments' --- homeassistant/components/notify/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/rest.py b/homeassistant/components/notify/rest.py index 2dfeeb311a4..3bc724ab1d4 100644 --- a/homeassistant/components/notify/rest.py +++ b/homeassistant/components/notify/rest.py @@ -42,7 +42,7 @@ def get_service(hass, config): target_param_name) -# pylint: disable=too-few-public-methods, disable-msg=too-many-arguments +# pylint: disable=too-few-public-methods, too-many-arguments class RestNotificationService(BaseNotificationService): """ Implements notification service for REST. """