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
|
@ -43,7 +43,7 @@ class VolvoSensor(VolvoEntity):
|
|||
if 'mil' in self.unit_of_measurement:
|
||||
return round(val, 2)
|
||||
return round(val, 1)
|
||||
elif self._attribute == 'distance_to_empty':
|
||||
if self._attribute == 'distance_to_empty':
|
||||
return int(floor(val))
|
||||
return int(round(val))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue