Skip to content

Commit

Permalink
Replace | with Union in structured_event
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Aug 21, 2024
1 parent 2ca6134 commit 769c4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowplow_tracker/events/structured_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(
action: str,
label: Optional[str] = None,
property_: Optional[str] = None,
value: Optional[int | float] = None,
value: Optional[Union[int, float]] = None,
event_subject: Optional[Subject] = None,
context: Optional[List[SelfDescribingJson]] = None,
true_timestamp: Optional[float] = None,
Expand Down

0 comments on commit 769c4fa

Please sign in to comment.