Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add type annotation
  • Loading branch information
alexander-alderman-webb committed Sep 26, 2025
commit ad4e223d52f3652a4f6f5de10e14a162cfd3b258
1 change: 1 addition & 0 deletions sentry_sdk/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -996,6 +996,7 @@ def _in_http_status_code_range(self, code, code_ranges):
return False

def _get_log_representation(self):
# type: () -> str
return "{op}transaction <{name}>".format(
op=("<" + self.op + "> " if self.op else ""), name=self.name
)
Expand Down
Loading