Skip to content

Commit 77de717

Browse files
committed
regenerate semconv
1 parent 8597734 commit 77de717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opentelemetry-semantic-conventions/src/opentelemetry/semconv/_incubating/attributes/feature_flag_attributes.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from enum import Enum
1616
from typing import Final
1717

18-
from deprecated import deprecated
18+
from typing_extensions import deprecated
1919

2020
FEATURE_FLAG_CONTEXT_ID: Final = "feature_flag.context.id"
2121
"""
@@ -75,8 +75,8 @@
7575

7676

7777
@deprecated(
78-
reason="The attribute feature_flag.evaluation.reason is deprecated - Replaced by `feature_flag.result.reason`"
79-
) # type: ignore
78+
"The attribute feature_flag.evaluation.reason is deprecated - Replaced by `feature_flag.result.reason`"
79+
)
8080
class FeatureFlagEvaluationReasonValues(Enum):
8181
STATIC = "static"
8282
"""The resolved value is static (no dynamic evaluation)."""

0 commit comments

Comments
 (0)