fix pylint errors in sensor/nest

This commit is contained in:
Joseph Hughes 2016-01-16 12:56:38 -07:00
parent 4dbd84ead0
commit 4ca4941c82

View File

@ -38,7 +38,9 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
for device in structure.devices:
for variable in config['monitored_conditions']:
if variable in SENSOR_TYPES:
add_devices([NestBasicSensor(structure, device, variable)])
add_devices([NestBasicSensor(structure,
device,
variable)])
elif variable in SENSOR_TEMP_TYPES:
add_devices([NestTempSensor(structure,
device,
@ -78,6 +80,8 @@ class NestSensor(Entity):
class NestBasicSensor(NestSensor):
""" Represents a basic Nest sensor with state. """
@property
def state(self):
""" Returns the state of the sensor. """