Skip to content

Commit

Permalink
need to return something
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Jun 17, 2024
1 parent df53fbc commit f12e51a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def _having_predicates(self) -> ast.And | Constant:
),
)

return ast.And(exprs=exprs)
return ast.And(exprs=exprs) if exprs else ast.Constant(value=True)

def _strip_person_and_event_properties(self, property_group: PropertyGroup) -> PropertyGroup | None:
property_groups_to_keep = [
Expand Down

0 comments on commit f12e51a

Please sign in to comment.