pythonkuma 0.4.0__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonkuma
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Simple Python wrapper for Uptime Kuma
5
5
  Project-URL: Source, https://github.com/tr4nt0r/pythonkuma
6
6
  Project-URL: Documentation, https://tr4nt0r.github.io/pythonkuma
@@ -10,7 +10,7 @@ from .models import MonitorStatus, MonitorType, UptimeKumaMonitor, UptimeKumaVer
10
10
  from .update import UpdateChecker
11
11
  from .uptimekuma import UptimeKuma
12
12
 
13
- __version__ = "0.4.0"
13
+ __version__ = "0.4.1"
14
14
 
15
15
  __all__ = [
16
16
  "MonitorStatus",
@@ -95,7 +95,7 @@ class UptimeKuma:
95
95
  raise UptimeKumaConnectionException from e
96
96
 
97
97
  try:
98
- metrics = set(text_string_to_metric_families(await request.text()))
98
+ metrics = list(text_string_to_metric_families(await request.text()))
99
99
  except ValueError as e:
100
100
  raise UptimeKumaParseException from e
101
101
 
File without changes
File without changes
File without changes
File without changes