core/homeassistant/components/whirlpool/const.py

11 lines
192 B
Python

"""Constants for the Whirlpool Appliances integration."""
from whirlpool.backendselector import Region
DOMAIN = "whirlpool"
CONF_REGIONS_MAP = {
"EU": Region.EU,
"US": Region.US,
}