refactor: reformat imports
This commit is contained in:
parent
712cd85aae
commit
33b8ffc476
1 changed files with 24 additions and 20 deletions
|
@ -12,27 +12,31 @@ from typing import Any
|
||||||
import requests
|
import requests
|
||||||
import socketio
|
import socketio
|
||||||
|
|
||||||
from . import (AuthMethod,
|
from . import (
|
||||||
DockerType,
|
AuthMethod,
|
||||||
Event,
|
DockerType,
|
||||||
IncidentStyle,
|
Event,
|
||||||
MaintenanceStrategy,
|
IncidentStyle,
|
||||||
MonitorStatus,
|
MaintenanceStrategy,
|
||||||
MonitorType,
|
MonitorStatus,
|
||||||
NotificationType,
|
MonitorType,
|
||||||
ProxyProtocol,
|
NotificationType,
|
||||||
Timeout,
|
ProxyProtocol,
|
||||||
UptimeKumaException,
|
Timeout,
|
||||||
notification_provider_conditions,
|
UptimeKumaException,
|
||||||
notification_provider_options)
|
notification_provider_conditions,
|
||||||
|
notification_provider_options
|
||||||
|
)
|
||||||
|
|
||||||
from .docstrings import (append_docstring,
|
from .docstrings import (
|
||||||
docker_host_docstring,
|
append_docstring,
|
||||||
maintenance_docstring,
|
docker_host_docstring,
|
||||||
monitor_docstring,
|
maintenance_docstring,
|
||||||
notification_docstring,
|
monitor_docstring,
|
||||||
proxy_docstring,
|
notification_docstring,
|
||||||
tag_docstring)
|
proxy_docstring,
|
||||||
|
tag_docstring
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def int_to_bool(data, keys) -> None:
|
def int_to_bool(data, keys) -> None:
|
||||||
|
|
Loading…
Reference in a new issue