2020-05-05 09:26:14 +00:00
|
|
|
"""Config flow for Home Connect."""
|
2024-03-08 18:15:59 +00:00
|
|
|
|
2020-05-05 09:26:14 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
|
|
|
|
|
|
class OAuth2FlowHandler(
|
|
|
|
config_entry_oauth2_flow.AbstractOAuth2FlowHandler, domain=DOMAIN
|
|
|
|
):
|
|
|
|
"""Config flow to handle Home Connect OAuth2 authentication."""
|
|
|
|
|
|
|
|
DOMAIN = DOMAIN
|
|
|
|
|
|
|
|
@property
|
|
|
|
def logger(self) -> logging.Logger:
|
|
|
|
"""Return logger."""
|
|
|
|
return logging.getLogger(__name__)
|