Skip to content

Commit

Permalink
Minor adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
armenzg committed Jan 7, 2025
1 parent 4e6eecc commit 76816b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry/issues/ignored.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from datetime import datetime, timedelta
from typing import Any, TypedDict

from django.contrib.auth.models import AnonymousUser
from django.utils import timezone

from sentry.db.postgres.transactions import in_test_hide_transaction_boundary
Expand Down Expand Up @@ -89,7 +90,7 @@ def handle_ignored(
group_list: Sequence[Group],
status_details: dict[str, Any],
acting_user: User | RpcUser,
user: User | RpcUser,
user: User | RpcUser | AnonymousUser,
) -> IgnoredStatusDetails:
"""
Handle issues that are ignored and create a snooze for them.
Expand Down

0 comments on commit 76816b3

Please sign in to comment.