Skip to content

Commit

Permalink
rerun versioner
Browse files Browse the repository at this point in the history
  • Loading branch information
aspicer committed Oct 2, 2024
1 parent fcebd85 commit 32f83a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion posthog/user_scripts/latest_user_defined_function.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<functions>
<!-- Version: v0. Generated at: 2024-10-01T21:44:50.312526+00:00
<!-- Version: v0. Generated at: 2024-10-02T17:52:34.462996+00:00
This file is autogenerated by udf_versioner.py. Do not edit this, only edit the version at docker/clickhouse/user_defined_function.xml--><function>
<type>executable</type>
<name>aggregate_funnel</name>
Expand Down
4 changes: 2 additions & 2 deletions posthog/user_scripts/v0/aggregate_funnel_trends.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python3
import sys
from dataclasses import dataclass, replace
from typing import Any
from typing import Any, Union
from collections.abc import Sequence
import json

Expand Down Expand Up @@ -40,7 +40,7 @@ def calculate_funnel_trends_from_user_events(
breakdown_attribution_type: str,
funnel_order_type: str,
prop_vals: list[Any],
events: Sequence[tuple[float, int, list[str] | int | str, list[int]]],
events: Sequence[tuple[float, int, Union[list[str], int, str], list[int]]],
):
default_entered_timestamp = EnteredTimestamp(0, [])
# If the attribution mode is a breakdown step, set this to the integer that represents that step
Expand Down
2 changes: 1 addition & 1 deletion posthog/user_scripts/v0/user_defined_function.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<functions>
<!-- Version: v0. Generated at: 2024-10-01T21:44:50.312526+00:00
<!-- Version: v0. Generated at: 2024-10-02T17:52:34.462996+00:00
This file is autogenerated by udf_versioner.py. Do not edit this, only edit the version at docker/clickhouse/user_defined_function.xml--><function>
<type>executable</type>
<name>aggregate_funnel</name>
Expand Down

0 comments on commit 32f83a0

Please sign in to comment.