Skip to content

Commit 56154a1

Browse files
ref: culprit is nullable (#75154)
when mypy checks models it notices that construction passes the `culprit` (nullable) column to this <!-- Describe your PR here. -->
1 parent 8b80f6f commit 56154a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/api/endpoints/organization_events_trace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class TraceError(TypedDict):
117117

118118

119119
class TracePerformanceIssue(TypedDict):
120-
culprit: str
120+
culprit: str | None
121121
end: float | None
122122
event_id: str
123123
issue_id: int

0 commit comments

Comments
 (0)