Skip to content

Commit

Permalink
Data type converter: Remove unneeded cursor kwarg to conn.cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Oct 18, 2022
1 parent 8b97123 commit 8085295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crate/client/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(self,
self.lowest_server_version = self._lowest_server_version()
self._closed = False

def cursor(self, cursor=None, **kwargs) -> Cursor:
def cursor(self, **kwargs) -> Cursor:
"""
Return a new Cursor Object using the connection.
"""
Expand Down

0 comments on commit 8085295

Please sign in to comment.