Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/sentry/grouping/ingest/hashing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import copy
import logging
from collections.abc import MutableMapping, Sequence
from typing import TYPE_CHECKING, Any
from collections.abc import Sequence
from typing import TYPE_CHECKING

import sentry_sdk

Expand Down Expand Up @@ -35,12 +35,11 @@
from sentry.utils.tag_normalization import normalized_sdk_tag_from_event

if TYPE_CHECKING:
from sentry.event_manager import Job
from sentry.eventstore.models import Event

logger = logging.getLogger("sentry.events.grouping")

Job = MutableMapping[str, Any]


def _calculate_event_grouping(
project: Project, event: Event, grouping_config: GroupingConfig
Expand Down