diff --git a/posthog/hogql_queries/insights/funnels/funnel_trends_udf.py b/posthog/hogql_queries/insights/funnels/funnel_trends_udf.py index 94087e3289eab..2a25a0e4a4061 100644 --- a/posthog/hogql_queries/insights/funnels/funnel_trends_udf.py +++ b/posthog/hogql_queries/insights/funnels/funnel_trends_udf.py @@ -157,5 +157,4 @@ def get_query(self) -> ast.SelectQuery: """, {"fill_query": fill_query, "inner_select": inner_select}, ) - return cast(ast.SelectQuery, s) diff --git a/posthog/hogql_queries/insights/funnels/test/test_funnel_trends.py b/posthog/hogql_queries/insights/funnels/test/test_funnel_trends.py index a303959db9309..9bc80102ceb11 100644 --- a/posthog/hogql_queries/insights/funnels/test/test_funnel_trends.py +++ b/posthog/hogql_queries/insights/funnels/test/test_funnel_trends.py @@ -1615,5 +1615,5 @@ def test_parses_breakdown_correctly(self): @patch("posthoganalytics.feature_enabled", new=Mock(return_value=False)) -class TestFunnelTrends(BaseTestFunnelTrends): +class BaseTestFunnelTrends(BaseTestFunnelTrends): pass