From bc73a6829def841c1649591d4c52d5e6d6773063 Mon Sep 17 00:00:00 2001 From: hydreliox Date: Mon, 11 Jan 2016 09:30:32 +0100 Subject: [PATCH] Code formatting Correct pylint errors --- homeassistant/components/notify/freesms.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/homeassistant/components/notify/freesms.py b/homeassistant/components/notify/freesms.py index e1e813b0d60..6e765ecfb74 100644 --- a/homeassistant/components/notify/freesms.py +++ b/homeassistant/components/notify/freesms.py @@ -9,7 +9,7 @@ https://home-assistant.io/components/notify. ... / import logging from homeassistant.helpers import validate_config from homeassistant.components.notify import ( - DOMAIN, ATTR_TITLE, BaseNotificationService) + DOMAIN, BaseNotificationService) from homeassistant.const import CONF_USERNAME, CONF_ACCESS_TOKEN _LOGGER = logging.getLogger(__name__) @@ -33,8 +33,6 @@ def get_service(hass, config): class FreeSMSNotificationService(BaseNotificationService): """ Implements notification service for the Free SMS service. """ - - def __init__(self, username, access_token): from freesms import FreeClient self.free_client = FreeClient(username, access_token)