hass-core/tests/components/climacell/const.py
Raman Gupta eccdae60bf
Add ClimaCell weather integration (#36547)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-02-24 09:34:27 +01:00

9 lines
144 B
Python

"""Constants for climacell tests."""
from homeassistant.const import CONF_API_KEY
API_KEY = "aa"
MIN_CONFIG = {
CONF_API_KEY: API_KEY,
}