Adjust to min instead of m for minutes

This commit is contained in:
Joakim Plate
2023-12-19 20:55:35 +01:00
parent badd06ede0
commit fbc13bfe02
2 changed files with 3 additions and 3 deletions

View File

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

View File

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