Skip to content

Commit

Permalink
ref: fix types for EventUser (#72897)
Browse files Browse the repository at this point in the history
<!-- Describe your PR here. -->
  • Loading branch information
asottile-sentry authored Jun 17, 2024
1 parent 8a7f07b commit 66e1ad6
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 66e1ad6

Please sign in to comment.