Pylint cleanups (#15626)
* Pylint 2 no-else-return fixes * Remove unneeded abstract-class-not-used pylint disable
This commit is contained in:
parent
a38c0d6d15
commit
b7c336a687
166 changed files with 425 additions and 490 deletions
|
@ -96,11 +96,11 @@ class TelldusLiveSensor(TelldusLiveEntity):
|
|||
"""Return the state of the sensor."""
|
||||
if not self.available:
|
||||
return None
|
||||
elif self._type == SENSOR_TYPE_TEMPERATURE:
|
||||
if self._type == SENSOR_TYPE_TEMPERATURE:
|
||||
return self._value_as_temperature
|
||||
elif self._type == SENSOR_TYPE_HUMIDITY:
|
||||
if self._type == SENSOR_TYPE_HUMIDITY:
|
||||
return self._value_as_humidity
|
||||
elif self._type == SENSOR_TYPE_LUMINANCE:
|
||||
if self._type == SENSOR_TYPE_LUMINANCE:
|
||||
return self._value_as_luminance
|
||||
return self._value
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue