Skip to content

Commit 30e5e5a

Browse files
committed
abc
1 parent 2fe06ca commit 30e5e5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opentelemetry-api/src/opentelemetry/metrics/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
2727
2828
"""
29+
import abc
2930
from typing import Callable, Dict, Optional, Sequence, Tuple, Type, TypeVar
3031

3132
from opentelemetry.util import loader
@@ -67,7 +68,7 @@ def record(self, value: ValueT) -> None:
6768
"""
6869

6970

70-
class LabelSet:
71+
class LabelSet(abc.ABC):
7172
"""A canonicalized set of labels useful for preaggregation
7273
7374
Re-usable LabelSet objects provide a potential optimization for scenarios

0 commit comments

Comments
 (0)