Skip to content

Commit b49e9d4

Browse files
gbriangbrian
authored andcommitted
Fix function signature
1 parent 4456683 commit b49e9d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlalchemy_monetdb/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def visit_sequence(self, seq):
7979
% self.dialect.identifier_preparer.format_sequence(seq)
8080
return exc
8181

82-
def limit_clause(self, select):
82+
def limit_clause(self, select, **kw):
8383
text = ""
8484
if select._limit is not None:
8585
text += "\nLIMIT " + str(select._limit)

0 commit comments

Comments
 (0)