Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Dec 19, 2024
1 parent e193228 commit 618fd1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions metricflow-semantics/metricflow_semantics/sql/sql_exprs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1822,8 +1822,7 @@ def create( # noqa: D102
) -> SqlCaseExpression:
parent_nodes: Tuple[SqlExpressionNode, ...] = ()
for when, then in when_to_then_exprs.items():
parent_nodes += (when,)
parent_nodes += (then,)
parent_nodes += (when, then)

if else_expr:
parent_nodes += (else_expr,)
Expand Down

0 comments on commit 618fd1e

Please sign in to comment.