Skip to content

Commit ebf4bd1

Browse files
committed
comments
Signed-off-by: emdneto <[email protected]>
1 parent df0034b commit ebf4bd1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
- typecheck: add sdk/resources and drop mypy
11+
([#4578](https://github.com/open-telemetry/opentelemetry-python/pull/4578))
12+
1013
## Version 1.33.0/0.54b0 (2025-05-09)
1114

1215
- Fix intermittent `Connection aborted` error when using otlp/http exporters

opentelemetry-sdk/src/opentelemetry/sdk/resources/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def __hash__(self) -> int:
303303
def to_json(self, indent: Optional[int] = 4) -> str:
304304
return dumps(
305305
{
306-
"attributes": dict(self._attributes),
306+
"attributes": dict(self.attributes),
307307
"schema_url": self._schema_url,
308308
},
309309
indent=indent,

0 commit comments

Comments
 (0)