9 lines
144 B
Python
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,
|
|
}
|