Skip to content

Commit c175229

Browse files
committed
fix formatting
1 parent 2d849ed commit c175229

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

data_algebra/db_model.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ def _db_if_else_expr(dbmodel, expression):
4949
x_expr = dbmodel.expr_to_sql(expression.args[1], want_inline_parens=True)
5050
y_expr = dbmodel.expr_to_sql(expression.args[2], want_inline_parens=True)
5151
return (
52-
"CASE" +\
53-
" WHEN " + if_expr + " THEN " + x_expr +\
54-
" WHEN NOT " + if_expr + " THEN " + y_expr +\
55-
" ELSE NULL END")
56-
52+
"CASE" +
53+
" WHEN " + if_expr + " THEN " + x_expr +
54+
" WHEN NOT " + if_expr + " THEN " + y_expr +
55+
" ELSE NULL END"
56+
)
5757

5858

5959
def _db_neg_expr(dbmodel, expression):

0 commit comments

Comments
 (0)