diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 30602da11df05..5758fbe891187 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -683,7 +683,7 @@ class Tuple(Expr): @dataclass(kw_only=True) class Lambda(Expr): args: list[str] - expr: Expr + expr: Expr | Block @dataclass(kw_only=True)