Skip to content

Commit 95280c8

Browse files
committed
updated requirements
1 parent 664732a commit 95280c8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flake8
2+
pytest

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
intersystems_iris>=3.3.0b9
1+
intersystems_iris>=3.3.0b10
22
SQLAlchemy>=1.4

sqlalchemy_iris/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ def create_connect_args(self, url):
808808
return ([], opts)
809809

810810
def do_execute(self, cursor, query, params, context=None):
811-
cursor.execute(query, *params)
811+
cursor.execute(query, params)
812812

813813
def do_executemany(self, cursor, query, params, context=None):
814814
cursor.executemany(query, params)

0 commit comments

Comments
 (0)