Skip to content

Commit

Permalink
updated requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Nov 24, 2022
1 parent 664732a commit 95280c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
flake8
pytest
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
intersystems_iris>=3.3.0b9
intersystems_iris>=3.3.0b10
SQLAlchemy>=1.4
2 changes: 1 addition & 1 deletion sqlalchemy_iris/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ def create_connect_args(self, url):
return ([], opts)

def do_execute(self, cursor, query, params, context=None):
cursor.execute(query, *params)
cursor.execute(query, params)

def do_executemany(self, cursor, query, params, context=None):
cursor.executemany(query, params)
Expand Down

0 comments on commit 95280c8

Please sign in to comment.