Skip to content

Commit

Permalink
ref: culprit is nullable (#75154)
Browse files Browse the repository at this point in the history
when mypy checks models it notices that construction passes the
`culprit` (nullable) column to this

<!-- Describe your PR here. -->
  • Loading branch information
asottile-sentry authored Jul 29, 2024
1 parent 8b80f6f commit 56154a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/api/endpoints/organization_events_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class TraceError(TypedDict):


class TracePerformanceIssue(TypedDict):
culprit: str
culprit: str | None
end: float | None
event_id: str
issue_id: int
Expand Down

0 comments on commit 56154a1

Please sign in to comment.