Skip to content

Commit

Permalink
abc
Browse files Browse the repository at this point in the history
  • Loading branch information
lzchen committed Nov 19, 2019
1 parent 2fe06ca commit 30e5e5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opentelemetry-api/src/opentelemetry/metrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"""
import abc
from typing import Callable, Dict, Optional, Sequence, Tuple, Type, TypeVar

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


class LabelSet:
class LabelSet(abc.ABC):
"""A canonicalized set of labels useful for preaggregation
Re-usable LabelSet objects provide a potential optimization for scenarios
Expand Down

0 comments on commit 30e5e5a

Please sign in to comment.