Skip to content

Commit 26d2813

Browse files
authored
Update tree_queries/compiler.py
1 parent 7539dda commit 26d2813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tree_queries/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ def as_sql(self, *args, **kwargs):
544544
# This only works because we know that the CTE is at the start of the query.
545545
return (
546546
"".join([explain, cte.format(**params), sql_0]),
547-
tuple(list(rank_table_params) + list(sql_1)),
547+
(*rank_table_params, *sql_1),
548548
)
549549

550550
def get_converters(self, expressions):

0 commit comments

Comments
 (0)