Skip to content

Commit 071653a

Browse files
committed
fix mypy
1 parent 2d0fcc9 commit 071653a

File tree

1 file changed

+2
-2
lines changed
  • opentelemetry-sdk/src/opentelemetry/sdk/resources

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ def __eq__(self, other: object) -> bool:
278278

279279
def __hash__(self) -> int:
280280
return hash(
281-
f"{dumps(self._attributes.copy(), sort_keys=True)}|{self._schema_url}"
282-
) # type: ignore
281+
f"{dumps(self._attributes.copy(), sort_keys=True)}|{self._schema_url}" # type: ignore
282+
)
283283

284284
def to_json(self, indent: int = 4) -> str:
285285
attributes = dict(self._attributes) # type: ignore

0 commit comments

Comments
 (0)