Skip to content

Commit a7cfa07

Browse files
committed
remove duplicate param
1 parent 257ecf2 commit a7cfa07

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

genie/load.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,9 +315,7 @@ def store_database(
315315
table_entity = syn.get(database_table_synid)
316316
# upsert table with new and updated rows
317317
if not all_updates.empty:
318-
Table(id=database_table_synid).store_rows(
319-
all_updates, to_csv_kwargs={"float_format": "%.12g"}
320-
)
318+
Table(id=database_table_synid).store_rows(all_updates)
321319
logger.info(f"Upserting {len(all_updates)} rows from {table_entity.name} table")
322320
# delete rows from the database
323321
if not to_delete_rows.empty:

0 commit comments

Comments
 (0)