From f320a45688eef3581ef092e2316d51f9e27cd7d0 Mon Sep 17 00:00:00 2001 From: parkervg Date: Tue, 22 Oct 2024 15:11:03 -0400 Subject: [PATCH] comment update --- blendsql/parse/_transforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blendsql/parse/_transforms.py b/blendsql/parse/_transforms.py index 8e7b04c..8f755e8 100644 --- a/blendsql/parse/_transforms.py +++ b/blendsql/parse/_transforms.py @@ -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)