Clean up connection classes in integrations H-L (#49891)

This commit is contained in:
Franck Nijhof 2021-05-01 09:02:53 +02:00 committed by GitHub
parent e652ff3a6a
commit 10d6dfd4ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 1 additions and 45 deletions

View file

@ -1,7 +1,6 @@
"""Config flow for Home Connect."""
import logging
from homeassistant import config_entries
from homeassistant.helpers import config_entry_oauth2_flow
from .const import DOMAIN
@ -13,7 +12,6 @@ class OAuth2FlowHandler(
"""Config flow to handle Home Connect OAuth2 authentication."""
DOMAIN = DOMAIN
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_PUSH
@property
def logger(self) -> logging.Logger: