Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 1e7734e

Browse files
Fix TypeError: to_sql() got an unexpected keyword argument 'method'
1 parent 18004a1 commit 1e7734e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_sqlalchemy_athena.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,8 @@ def test_to_sql(self, engine, conn):
323323
schema=SCHEMA,
324324
index=False,
325325
if_exists="replace",
326-
method="multi",
326+
# TODO Python 3.4: TypeError: to_sql() got an unexpected keyword argument 'method'
327+
# method="multi",
327328
)
328329

329330
table = Table(table_name, MetaData(bind=engine), autoload=True)

0 commit comments

Comments
 (0)