Correct unit of measurement for qbittorrent data rate sensors (#55758)
parent
1f5720199c
commit
4ae887ad34
|
@ -17,7 +17,7 @@ from homeassistant.const import (
|
|||
CONF_PASSWORD,
|
||||
CONF_URL,
|
||||
CONF_USERNAME,
|
||||
DATA_RATE_KILOBYTES_PER_SECOND,
|
||||
DATA_RATE_KIBIBYTES_PER_SECOND,
|
||||
STATE_IDLE,
|
||||
)
|
||||
from homeassistant.exceptions import PlatformNotReady
|
||||
|
@ -39,12 +39,12 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = (
|
|||
SensorEntityDescription(
|
||||
key=SENSOR_TYPE_DOWNLOAD_SPEED,
|
||||
name="Down Speed",
|
||||
native_unit_of_measurement=DATA_RATE_KILOBYTES_PER_SECOND,
|
||||
native_unit_of_measurement=DATA_RATE_KIBIBYTES_PER_SECOND,
|
||||
),
|
||||
SensorEntityDescription(
|
||||
key=SENSOR_TYPE_UPLOAD_SPEED,
|
||||
name="Up Speed",
|
||||
native_unit_of_measurement=DATA_RATE_KILOBYTES_PER_SECOND,
|
||||
native_unit_of_measurement=DATA_RATE_KIBIBYTES_PER_SECOND,
|
||||
),
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue