Skip to content

Commit

Permalink
🔧 chore: mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrajjoshi committed Jan 2, 2025
1 parent 0f3ffab commit ed76963
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sentry/integrations/slack/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ def _handle_parent_notification(
{
"rule_action_uuid": parent_notification.rule_action_uuid,
"channel_id": channel_id,
"thread_ts": parent_notification.message_identifier,
"thread_ts": (
str(parent_notification.message_identifier)
if parent_notification.message_identifier
else ""
),
}
)
record_lifecycle_termination_level(lifecycle, e)
Expand Down

0 comments on commit ed76963

Please sign in to comment.