Fix PEP257 issues
This commit is contained in:
parent
cf7c2c492a
commit
652f059d6a
19 changed files with 86 additions and 131 deletions
|
@ -1,7 +1,5 @@
|
|||
"""
|
||||
homeassistant.components.notify.free_mobile
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Free Mobile SMS platform for notify component.
|
||||
Support for thr Free Mobile SMS platform.
|
||||
|
||||
For more details about this platform, please refer to the documentation at
|
||||
https://home-assistant.io/components/notify.free_mobile/
|
||||
|
@ -17,8 +15,7 @@ REQUIREMENTS = ['freesms==0.1.0']
|
|||
|
||||
|
||||
def get_service(hass, config):
|
||||
""" Get the Free Mobile SMS notification service. """
|
||||
|
||||
"""Get the Free Mobile SMS notification service."""
|
||||
if not validate_config({DOMAIN: config},
|
||||
{DOMAIN: [CONF_USERNAME,
|
||||
CONF_ACCESS_TOKEN]},
|
||||
|
@ -31,14 +28,15 @@ def get_service(hass, config):
|
|||
|
||||
# pylint: disable=too-few-public-methods
|
||||
class FreeSMSNotificationService(BaseNotificationService):
|
||||
""" Implements notification service for the Free Mobile SMS service. """
|
||||
"""Implement a notification service for the Free Mobile SMS service."""
|
||||
|
||||
def __init__(self, username, access_token):
|
||||
"""Initialize the service."""
|
||||
from freesms import FreeClient
|
||||
self.free_client = FreeClient(username, access_token)
|
||||
|
||||
def send_message(self, message="", **kwargs):
|
||||
""" Send a message to the Free Mobile user cell. """
|
||||
"""Send a message to the Free Mobile user cell."""
|
||||
resp = self.free_client.send_sms(message)
|
||||
|
||||
if resp.status_code == 400:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue