mirror of
https://github.com/home-assistant/core.git
synced 2025-08-06 06:05:10 +02:00
Adjust to min instead of m for minutes
This commit is contained in:
@@ -400,8 +400,8 @@ class SensorDeviceClass(StrEnum):
|
||||
"""Generic flow rate
|
||||
|
||||
Unit of measurement: UnitOfVolumeFlowRate
|
||||
- SI /metric: `m³/h`, `l/m`
|
||||
- USCS / imperial: `ft³/m`
|
||||
- SI / metric: `m³/h`, `L/min`
|
||||
- USCS / imperial: `ft³/min`, `gal/min`
|
||||
"""
|
||||
|
||||
WATER = "water"
|
||||
|
@@ -1040,7 +1040,7 @@ class UnitOfVolumeFlowRate(StrEnum):
|
||||
"""Volume flow rate units."""
|
||||
|
||||
CUBIC_METERS_PER_HOUR = "m³/h"
|
||||
CUBIC_FEET_PER_MINUTE = "ft³/m"
|
||||
CUBIC_FEET_PER_MINUTE = "ft³/min"
|
||||
LITERS_PER_MINUTE = "L/min"
|
||||
GALLONS_PER_MINUTE = "gal/min"
|
||||
|
||||
|
Reference in New Issue
Block a user