Skip to content

Commit 5023c76

Browse files
committed
fixes
1 parent 47ed910 commit 5023c76

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

sentry_sdk/traces.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from enum import Enum
1010
from typing import TYPE_CHECKING
1111

12-
from sentry_sdk.consts import SPANDATA
1312
from sentry_sdk.utils import format_attribute, logger
1413

1514
if TYPE_CHECKING:
@@ -100,7 +99,7 @@ def __repr__(self) -> str:
10099
f"<{self.__class__.__name__}("
101100
f"name={self._name}, "
102101
f"trace_id={self.trace_id}, "
103-
f"span_id={self.span_id}>"
102+
f"span_id={self.span_id})>"
104103
)
105104

106105
def get_attributes(self) -> "Attributes":

0 commit comments

Comments
 (0)