1
mirror of https://github.com/home-assistant/core synced 2024-09-28 03:04:04 +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 commit ae77cf3cd7.

* Revert "Add calorie and bpm to units"

This reverts commit 7d82bb1c12.

* Removing unnecessary formatting
This commit is contained in:
Carlos Cristobal 2023-01-06 06:12:41 -07:00 committed by GitHub
parent bd8cb4f166
commit 8bb5763ea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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