From 5406028acea190cb7e41a8f16fa3f72de26d5daf Mon Sep 17 00:00:00 2001 From: Fabian Affolter <fabian@affolter-engineering.ch> Date: Wed, 24 Feb 2016 10:47:35 +0100 Subject: [PATCH] Modify docstrings to match PEP257 --- .../components/garage_door/__init__.py | 6 +++--- .../components/sensor/steam_online.py | 19 ++++++++----------- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/homeassistant/components/garage_door/__init__.py b/homeassistant/components/garage_door/__init__.py index 05728480ce2..956fac5621d 100644 --- a/homeassistant/components/garage_door/__init__.py +++ b/homeassistant/components/garage_door/__init__.py @@ -89,16 +89,16 @@ class GarageDoorDevice(Entity): return None def close_door(self): - """Closes the garage door.""" + """Close the garage door.""" raise NotImplementedError() def open_door(self): - """Opens the garage door.""" + """Open the garage door.""" raise NotImplementedError() @property def state(self): - """State of the garage door.""" + """Returns the state of the garage door.""" closed = self.is_closed if closed is None: return STATE_UNKNOWN diff --git a/homeassistant/components/sensor/steam_online.py b/homeassistant/components/sensor/steam_online.py index 6b740d0639b..5a29a0e3976 100644 --- a/homeassistant/components/sensor/steam_online.py +++ b/homeassistant/components/sensor/steam_online.py @@ -1,6 +1,4 @@ """ -homeassistant.components.sensor.steam_online -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Sensor for Steam account status. For more details about this platform, please refer to the documentation at @@ -16,7 +14,7 @@ REQUIREMENTS = ['steamodd==4.21'] # pylint: disable=unused-argument def setup_platform(hass, config, add_devices, discovery_info=None): - """ Sets up the Steam platform. """ + """Setup the Steam platform.""" import steam as steamod steamod.api.key.set(config.get(CONF_API_KEY)) add_devices( @@ -25,8 +23,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None): class SteamSensor(Entity): - """ Steam account. """ - + """A class for the Steam account.""" # pylint: disable=abstract-method def __init__(self, account, steamod): self._steamod = steamod @@ -35,22 +32,22 @@ class SteamSensor(Entity): @property def name(self): - """ Returns the name of the sensor. """ + """Return the name of the sensor.""" return self._profile.persona @property def entity_id(self): - """ Entity ID. """ + """Return the entity ID.""" return 'sensor.steam_{}'.format(self._account) @property def state(self): - """ State of the sensor. """ + """Return the state of the sensor.""" return self._state # pylint: disable=no-member def update(self): - """ Update device state. """ + """Update device state.""" self._profile = self._steamod.user.profile(self._account) self._state = { 1: 'Online', @@ -63,12 +60,12 @@ class SteamSensor(Entity): @property def device_state_attributes(self): - """ Returns the state attributes. """ + """Return the state attributes.""" return { ATTR_ENTITY_PICTURE: self._profile.avatar_medium } @property def icon(self): - """ Icon to use in the frontend """ + """Return the icon to use in the frontend.""" return ICON -- GitLab