Skip to content

Commit

Permalink
fix argument error
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Oct 15, 2024
1 parent 50dac6f commit ada6512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/specprodDB/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ def load_file(filepaths, tcls, hdu=1, row_filter=None, q3c=None, chunksize=50000
log.info("Row filter removed all data rows, skipping %s.", filepath)
continue
log.info("Row filter applied on %s; %d rows remain.", tn, good_rows.sum())
orm_objects = tcls.convert(data, row_filter=good_rows)
orm_objects = tcls.convert(data, row_index=good_rows)
log.info("Converted data to ORM objects on %s.", tn)
del data
finalrows = len(orm_objects)
Expand Down

0 comments on commit ada6512

Please sign in to comment.