Skip to content

Commit

Permalink
ref: fix types for EventUser
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile-sentry committed Jun 17, 2024
1 parent 29ff72e commit 06692fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry/utils/eventuser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from ipaddress import IPv4Address, IPv6Address, ip_address
from typing import Any

from django.db.models import QuerySet
from snuba_sdk import (
BooleanCondition,
BooleanOp,
Expand Down Expand Up @@ -117,7 +118,7 @@ def get_display_name(self):
@classmethod
def for_projects(
self,
projects: list[Project],
projects: QuerySet[Project] | list[Project],
keyword_filters: Mapping[str, list[Any]],
filter_boolean: BooleanOp = BooleanOp.AND,
result_offset: int = 0,
Expand Down

0 comments on commit 06692fa

Please sign in to comment.