Skip to content

Commit

Permalink
Remove bogus parameter from commit.__init__().
Browse files Browse the repository at this point in the history
  • Loading branch information
doerwalter committed Dec 13, 2021
1 parent 0802c50 commit ae2b31f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ll/pysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ class commit(_SQLCommand):
For the rest of the parameters see the base class :class:`_DatabaseCommand`.
"""

def __init__(self, sql, *, connection=None, raiseexceptions=None, cond=True):
def __init__(self, *, connection=None, raiseexceptions=None, cond=True):
super().__init__(connection=connection, raiseexceptions=raiseexceptions, cond=cond)

def __repr__(self):
Expand Down

0 comments on commit ae2b31f

Please sign in to comment.