mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 11:26:46 +00: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,
|
|
}
|