Skip to content

Commit 82a11c4

Browse files
ci(opentelemetry): Ignore mypy error
1 parent 9c97dac commit 82a11c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/opentelemetry/span_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class SentrySpanProcessor(SpanProcessor):
8484

8585
def __new__(cls) -> "SentrySpanProcessor":
8686
if not hasattr(cls, "instance"):
87-
cls.instance = super().__new__(cls)
87+
cls.instance = super().__new__(cls) # type: ignore[misc]
8888

8989
return cls.instance
9090

0 commit comments

Comments
 (0)