We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0fcc9 commit 071653aCopy full SHA for 071653a
opentelemetry-sdk/src/opentelemetry/sdk/resources/__init__.py
@@ -278,8 +278,8 @@ def __eq__(self, other: object) -> bool:
278
279
def __hash__(self) -> int:
280
return hash(
281
- f"{dumps(self._attributes.copy(), sort_keys=True)}|{self._schema_url}"
282
- ) # type: ignore
+ f"{dumps(self._attributes.copy(), sort_keys=True)}|{self._schema_url}" # type: ignore
+ )
283
284
def to_json(self, indent: int = 4) -> str:
285
attributes = dict(self._attributes) # type: ignore
0 commit comments