File tree 1 file changed +3
-3
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/util
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
from deprecated import deprecated
18
18
19
19
from opentelemetry .attributes import BoundedAttributes
20
- from opentelemetry .util .types import ExtendedAttributes
20
+ from opentelemetry .util .types import Attributes
21
21
22
22
23
23
class InstrumentationInfo :
@@ -92,7 +92,7 @@ def __init__(
92
92
name : str ,
93
93
version : Optional [str ] = None ,
94
94
schema_url : Optional [str ] = None ,
95
- attributes : Optional [ExtendedAttributes ] = None ,
95
+ attributes : Optional [Attributes ] = None ,
96
96
) -> None :
97
97
self ._name = name
98
98
self ._version = version
@@ -150,7 +150,7 @@ def name(self) -> str:
150
150
return self ._name
151
151
152
152
@property
153
- def attributes (self ) -> ExtendedAttributes :
153
+ def attributes (self ) -> Attributes :
154
154
return self ._attributes
155
155
156
156
def to_json (self , indent : Optional [int ] = 4 ) -> str :
You can’t perform that action at this time.
0 commit comments