File: __init__.py

package info (click to toggle)
python-aiohasupervisor 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 932 kB
  • sloc: python: 4,666; sh: 37; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download
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",
]