1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
"""Init file for aiohasupervisor."""
from aiohasupervisor.exceptions import (
AddonNotSupportedArchitectureError,
AddonNotSupportedError,
AddonNotSupportedHomeAssistantVersionError,
AddonNotSupportedMachineTypeError,
SupervisorAuthenticationError,
SupervisorBadRequestError,
SupervisorConnectionError,
SupervisorError,
SupervisorForbiddenError,
SupervisorNotFoundError,
SupervisorResponseError,
SupervisorServiceUnavailableError,
SupervisorTimeoutError,
)
from aiohasupervisor.root import SupervisorClient
__all__ = [
"AddonNotSupportedArchitectureError",
"AddonNotSupportedError",
"AddonNotSupportedHomeAssistantVersionError",
"AddonNotSupportedMachineTypeError",
"SupervisorAuthenticationError",
"SupervisorBadRequestError",
"SupervisorClient",
"SupervisorConnectionError",
"SupervisorError",
"SupervisorForbiddenError",
"SupervisorNotFoundError",
"SupervisorResponseError",
"SupervisorServiceUnavailableError",
"SupervisorTimeoutError",
]
|