* Fix for justnimbus integration * Fixed tests and moved const * fix: added reauth flow * fix: fixed reauth config flow * chore: added config_flow reauth test * chore: Processed PR feedback --------- Co-authored-by: G Johansson <goran.johansson@shiftit.se>
14 lines
213 B
Python
14 lines
213 B
Python
"""Constants for the JustNimbus integration."""
|
|
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "justnimbus"
|
|
|
|
PLATFORMS = [
|
|
Platform.SENSOR,
|
|
]
|
|
|
|
CONF_ZIP_CODE: Final = "zip_code"
|