Skip to content

Commit 86f44a6

Browse files
committed
Fix arguments for an as_sql wrapper
[#181799346]
1 parent 69331d0 commit 86f44a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

psqlextra/compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ def append_caller_to_sql(sql):
7878

7979

8080
class PostgresCompiler(SQLCompiler):
81-
def as_sql(self):
82-
sql, params = super().as_sql()
81+
def as_sql(self, **kwargs):
82+
sql, params = super().as_sql(**kwargs)
8383
return append_caller_to_sql(sql), params
8484

8585

0 commit comments

Comments
 (0)