Skip to content

Commit

Permalink
Correct track_site_search properties dict type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Aug 21, 2024
1 parent 769c4fa commit e79d5fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snowplow_tracker/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ def track_site_search(
)
non_empty(terms)

properties: Union[
dict[str, Sequence[str], dict[str, Union[str, bool]], int]
properties: dict[
str, Union[Sequence[str], dict[str, Union[str, bool]], int]
] = {}
properties["terms"] = terms
if filters is not None:
Expand Down

0 comments on commit e79d5fb

Please sign in to comment.