Skip to content

Commit

Permalink
refactor(cursor, setinputsize): use named arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooke-white committed May 10, 2021
1 parent 374bf77 commit 665d9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redshift_connector/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def __iter__(self: "Cursor") -> "Cursor":
"""
return self

def setinputsizes(self: "Cursor", sizes):
def setinputsizes(self: "Cursor", *sizes):
"""This method is part of the `DBAPI 2.0 specification
<http://www.python.org/dev/peps/pep-0249/>`_, however, it is not
implemented.
Expand Down

0 comments on commit 665d9aa

Please sign in to comment.