main commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-16 16:30:25 +09:00
parent 91c7e04474
commit 537e7b363f
1146 changed files with 45926 additions and 77196 deletions

View File

@@ -38,7 +38,6 @@ class MetricName(object):
# as messages are sent we record the sizes
sensor.record(message_size)
"""
__slots__ = ('_name', '_group', '_description', '_tags', '_hash')
def __init__(self, name, group, description=None, tags=None):
"""
@@ -94,7 +93,7 @@ class MetricName(object):
return True
if other is None:
return False
return (isinstance(self, type(other)) and
return (type(self) == type(other) and
self.group == other.group and
self.name == other.name and
self.tags == other.tags)