Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
armenzg committed Jan 7, 2025
1 parent 5264787 commit 87ec9e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry/tasks/post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from sentry.issues.grouptype import GroupCategory
from sentry.issues.issue_occurrence import IssueOccurrence
from sentry.killswitches import killswitch_matches_context
from sentry.models.groupinbox import InboxReasonDetails
from sentry.replays.lib.event_linking import transform_event_for_linking_payload
from sentry.replays.lib.kafka import initialize_replays_publisher
from sentry.sentry_metrics.client import generic_metrics_backend
Expand Down Expand Up @@ -913,7 +914,7 @@ def process_snoozes(job: PostProcessJob) -> None:
)

if not snooze_condition_still_applies:
snooze_details = {
snooze_details: InboxReasonDetails = {
"until": snooze.until,
"count": snooze.count,
"window": snooze.window,
Expand Down

0 comments on commit 87ec9e3

Please sign in to comment.