mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Fix Fitbit state for values over 999 (#85251)
* Remove comma thousands formatting * Add calorie and bpm to units * Updating device and state classes * Revert "Updating device and state classes" This reverts commit ae77cf3cd74bf3e09ac70a0a4be4a73e0f7d3223. * Revert "Add calorie and bpm to units" This reverts commit 7d82bb1c1231ef4c45ca08dda5d30d10c9a0c0a0. * Removing unnecessary formatting
This commit is contained in:
parent
bd8cb4f166
commit
8bb5763ea0
@ -449,7 +449,7 @@ class FitbitSensor(SensorEntity):
|
|||||||
self._attr_native_value = raw_state
|
self._attr_native_value = raw_state
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
self._attr_native_value = f"{int(raw_state):,}"
|
self._attr_native_value = int(raw_state)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
self._attr_native_value = raw_state
|
self._attr_native_value = raw_state
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user