Skip to content

Commit 618fd1e

Browse files
PR feedback
1 parent e193228 commit 618fd1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

metricflow-semantics/metricflow_semantics/sql/sql_exprs.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1822,8 +1822,7 @@ def create( # noqa: D102
18221822
) -> SqlCaseExpression:
18231823
parent_nodes: Tuple[SqlExpressionNode, ...] = ()
18241824
for when, then in when_to_then_exprs.items():
1825-
parent_nodes += (when,)
1826-
parent_nodes += (then,)
1825+
parent_nodes += (when, then)
18271826

18281827
if else_expr:
18291828
parent_nodes += (else_expr,)

0 commit comments

Comments
 (0)