We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ed910 commit 5023c76Copy full SHA for 5023c76
1 file changed
sentry_sdk/traces.py
@@ -9,7 +9,6 @@
9
from enum import Enum
10
from typing import TYPE_CHECKING
11
12
-from sentry_sdk.consts import SPANDATA
13
from sentry_sdk.utils import format_attribute, logger
14
15
if TYPE_CHECKING:
@@ -100,7 +99,7 @@ def __repr__(self) -> str:
100
99
f"<{self.__class__.__name__}("
101
f"name={self._name}, "
102
f"trace_id={self.trace_id}, "
103
- f"span_id={self.span_id}>"
+ f"span_id={self.span_id})>"
104
)
105
106
def get_attributes(self) -> "Attributes":
0 commit comments