From e79d5fb92cafd3a293cc1e12a87de1ef875b5a5d Mon Sep 17 00:00:00 2001 From: Greg Leonard <45019882+greg-el@users.noreply.github.com> Date: Wed, 21 Aug 2024 15:49:20 +0100 Subject: [PATCH] Correct `track_site_search` `properties` dict type hint --- snowplow_tracker/tracker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snowplow_tracker/tracker.py b/snowplow_tracker/tracker.py index 4d0b6e00..8b058b47 100644 --- a/snowplow_tracker/tracker.py +++ b/snowplow_tracker/tracker.py @@ -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: