From 33b8ffc4763a2d6b7a141872f21c44661dfb622d Mon Sep 17 00:00:00 2001 From: lucasheld Date: Thu, 25 May 2023 18:37:49 +0200 Subject: [PATCH] refactor: reformat imports --- uptime_kuma_api/api.py | 44 +++++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/uptime_kuma_api/api.py b/uptime_kuma_api/api.py index 568c67a..07a6acd 100644 --- a/uptime_kuma_api/api.py +++ b/uptime_kuma_api/api.py @@ -12,27 +12,31 @@ from typing import Any import requests import socketio -from . import (AuthMethod, - DockerType, - Event, - IncidentStyle, - MaintenanceStrategy, - MonitorStatus, - MonitorType, - NotificationType, - ProxyProtocol, - Timeout, - UptimeKumaException, - notification_provider_conditions, - notification_provider_options) +from . import ( + AuthMethod, + DockerType, + Event, + IncidentStyle, + MaintenanceStrategy, + MonitorStatus, + MonitorType, + NotificationType, + ProxyProtocol, + Timeout, + UptimeKumaException, + notification_provider_conditions, + notification_provider_options +) -from .docstrings import (append_docstring, - docker_host_docstring, - maintenance_docstring, - monitor_docstring, - notification_docstring, - proxy_docstring, - tag_docstring) +from .docstrings import ( + append_docstring, + docker_host_docstring, + maintenance_docstring, + monitor_docstring, + notification_docstring, + proxy_docstring, + tag_docstring +) def int_to_bool(data, keys) -> None: