Use relative imports [A-H] (#61574)

This commit is contained in:
Michael 2021-12-13 20:03:01 +01:00 committed by GitHub
parent 237232dad6
commit b68a2747f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 57 additions and 67 deletions

View file

@ -3,14 +3,10 @@ from aioazuredevops.client import DevOpsClient
import aiohttp
import voluptuous as vol
from homeassistant.components.azure_devops.const import (
CONF_ORG,
CONF_PAT,
CONF_PROJECT,
DOMAIN,
)
from homeassistant.config_entries import ConfigFlow
from .const import CONF_ORG, CONF_PAT, CONF_PROJECT, DOMAIN
class AzureDevOpsFlowHandler(ConfigFlow, domain=DOMAIN):
"""Handle a Azure DevOps config flow."""