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

@ -7,17 +7,15 @@ from typing import Any
from aioazuredevops.builds import DevOpsBuild
from homeassistant.components.azure_devops import (
AzureDevOpsDeviceEntity,
AzureDevOpsEntityDescription,
)
from homeassistant.components.azure_devops.const import CONF_ORG, DOMAIN
from homeassistant.components.sensor import SensorEntity, SensorEntityDescription
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import StateType
from . import AzureDevOpsDeviceEntity, AzureDevOpsEntityDescription
from .const import CONF_ORG, DOMAIN
@dataclass
class AzureDevOpsSensorEntityDescriptionMixin: