mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02: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 commitae77cf3cd7
. * Revert "Add calorie and bpm to units" This reverts commit7d82bb1c12
. * Removing unnecessary formatting
This commit is contained in:
@@ -449,7 +449,7 @@ class FitbitSensor(SensorEntity):
|
||||
self._attr_native_value = raw_state
|
||||
else:
|
||||
try:
|
||||
self._attr_native_value = f"{int(raw_state):,}"
|
||||
self._attr_native_value = int(raw_state)
|
||||
except TypeError:
|
||||
self._attr_native_value = raw_state
|
||||
|
||||
|
Reference in New Issue
Block a user