Skip to content
Snippets Groups Projects
Commit f3e16ca3 authored by John Mihalic's avatar John Mihalic Committed by Pascal Vizeli
Browse files

Catch divide by zero errors when a sleep type is 0 (#8809)

Add an optional extended description…
parent 6de38cb9
No related branches found
No related tags found
No related merge requests found
...@@ -197,10 +197,16 @@ class EightUserSensor(EightSleepUserEntity): ...@@ -197,10 +197,16 @@ class EightUserSensor(EightSleepUserEntity):
sleep_time = sum(self._attr['breakdown'].values()) - \ sleep_time = sum(self._attr['breakdown'].values()) - \
self._attr['breakdown']['awake'] self._attr['breakdown']['awake']
state_attr[ATTR_SLEEP_DUR] = sleep_time state_attr[ATTR_SLEEP_DUR] = sleep_time
state_attr[ATTR_LIGHT_PERC] = round(( try:
self._attr['breakdown']['light'] / sleep_time) * 100, 2) state_attr[ATTR_LIGHT_PERC] = round((
state_attr[ATTR_DEEP_PERC] = round(( self._attr['breakdown']['light'] / sleep_time) * 100, 2)
self._attr['breakdown']['deep'] / sleep_time) * 100, 2) except ZeroDivisionError:
state_attr[ATTR_LIGHT_PERC] = 0
try:
state_attr[ATTR_DEEP_PERC] = round((
self._attr['breakdown']['deep'] / sleep_time) * 100, 2)
except ZeroDivisionError:
state_attr[ATTR_DEEP_PERC] = 0
if self._units == 'si': if self._units == 'si':
room_temp = round(self._attr['room_temp'], 2) room_temp = round(self._attr['room_temp'], 2)
......
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