Skip to content

Commit

Permalink
comment update
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Oct 22, 2024
1 parent 61b63dc commit f320a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blendsql/parse/_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def set_ingredient_nodes_to_true(node) -> Union[exp.Expression, None]:
# Case 1: we have an Ingredient in isolation
if check.is_ingredient_node(node):
return exp.true()
# Case 2: we have an Ingredient within a predicate (=, <, >, etc.)
# Case 2: we have an Ingredient within a predicate (=, <, >, IN, etc.)
if isinstance(node, exp.Predicate):
if any(
check.is_ingredient_node(x)
Expand Down

0 comments on commit f320a45

Please sign in to comment.