From 7fa26622c28a143df71edd5156cd270137c223de Mon Sep 17 00:00:00 2001 From: tr4nt0r <4445816+tr4nt0r@users.noreply.github.com> Date: Tue, 10 Jun 2025 22:40:22 +0200 Subject: [PATCH] Add MonitorStatus to exports --- pythonkuma/__init__.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pythonkuma/__init__.py b/pythonkuma/__init__.py index 510e2d0..e6a4415 100644 --- a/pythonkuma/__init__.py +++ b/pythonkuma/__init__.py @@ -1,16 +1,13 @@ """Python API wrapper for Uptime Kuma.""" -from .exceptions import ( - UptimeKumaAuthenticationException, - UptimeKumaConnectionException, - UptimeKumaException, -) -from .models import MonitorType, UptimeKumaApiResponse, UptimeKumaMonitor +from .exceptions import UptimeKumaAuthenticationException, UptimeKumaConnectionException, UptimeKumaException +from .models import MonitorStatus, MonitorType, UptimeKumaApiResponse, UptimeKumaMonitor from .uptimekuma import UptimeKuma __version__ = "0.0.0rc0" __all__ = [ + "MonitorStatus", "MonitorType", "UptimeKuma", "UptimeKumaApiResponse",