diff --git a/homeassistant/const.py b/homeassistant/const.py index 127faf93d6f..eef142812ba 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -477,9 +477,17 @@ ATTR_TEMPERATURE: Final = "temperature" # Persons attribute ATTR_PERSONS: Final = "persons" + # #### UNITS OF MEASUREMENT #### # Apparent power units +class UnitOfApparentPower(StrEnum): + """Apparent power units.""" + + VOLT_AMPERE = "VA" + + POWER_VOLT_AMPERE: Final = "VA" +"""Deprecated: please use UnitOfApparentPower.VOLT_AMPERE.""" # Power units