Skip to content

Commit 7c7d49a

Browse files
committed
Fix typing
1 parent 61312d2 commit 7c7d49a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sentry/search/events/builder/test_discover.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_simple_query(self):
6969
query.get_snql_query().validate()
7070

7171
def test_query_without_project_ids(self):
72-
params = {
72+
params: ParamsType = {
7373
"start": self.params["start"],
7474
"end": self.params["end"],
7575
"organization_id": self.organization.id,
@@ -79,7 +79,7 @@ def test_query_without_project_ids(self):
7979
bulk_snuba_queries([query.get_snql_query()], referrer=Referrer.TESTING_TEST.value)
8080

8181
def test_query_with_empty_project_ids(self):
82-
params = {
82+
params: ParamsType = {
8383
"start": self.params["start"],
8484
"end": self.params["end"],
8585
"project_id": [], # We add an empty project_id list

0 commit comments

Comments
 (0)