mpounsett / nagiosplugin

A Python class library which helps with writing Nagios (Icinga) compatible plugins.
https://nagiosplugin.readthedocs.io/
Other
28 stars 14 forks source link

Performance class should be a dataclass #45

Open mpounsett opened 2 years ago

mpounsett commented 2 years ago

The Performance class inherits from namedtuple and then implements additional methods. This seems like a prime candidate for a dataclass. Care should be taken that re-implementing this doesn't break the API.

mpounsett commented 2 years ago

Reimplementing this will have to wait until support for python 3.6 is dropped.