mirror of
https://github.com/home-assistant/core.git
synced 2026-09-13 04:01:03 +01:00
10 lines
144 B
Python
10 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,
|
|
}
|