Clean up connection classes in integrations M-O (#49892)

This commit is contained in:
Franck Nijhof 2021-05-01 09:03:37 +02:00 committed by GitHub
parent 10d6dfd4ae
commit a6206b2819
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 3 additions and 47 deletions

View file

@ -1,7 +1,7 @@
"""Config flow for 1-Wire component."""
import voluptuous as vol
from homeassistant.config_entries import CONN_CLASS_LOCAL_POLL, ConfigFlow
from homeassistant.config_entries import ConfigFlow
from homeassistant.const import CONF_HOST, CONF_PORT, CONF_TYPE
from homeassistant.core import HomeAssistant
@ -82,7 +82,6 @@ class OneWireFlowHandler(ConfigFlow, domain=DOMAIN):
"""Handle 1-Wire config flow."""
VERSION = 1
CONNECTION_CLASS = CONN_CLASS_LOCAL_POLL
def __init__(self):
"""Initialize 1-Wire config flow."""