Skip to content
Snippets Groups Projects
Commit 3938b9f3 authored by Philip Lundrigan's avatar Philip Lundrigan
Browse files

If decimal_places is 0, cast to int after rounding

parent d84bea36
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,8 @@ class ArestSensor(Entity):
value = float(value) * float(self._corr_factor)
if self._decimal_places is not None:
value = round(value, self._decimal_places)
if self._decimal_places == 0:
value = int(value)
return value
else:
return values.get(self._variable, 'n/a')
......
......@@ -79,6 +79,8 @@ class CommandSensor(Entity):
value = float(value) * float(self._corr_factor)
if self._decimal_places is not None:
value = round(value, self._decimal_places)
if self._decimal_places == 0:
value = int(value)
self._state = value
except ValueError:
self._state = value
......
......@@ -140,6 +140,8 @@ class RestSensor(Entity):
value = float(value) * float(self._corr_factor)
if self._decimal_places is not None:
value = round(value, self._decimal_places)
if self._decimal_places == 0:
value = int(value)
self._state = value
except ValueError:
self._state = RestSensor.extract_value(value, self._variable)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment