Skip to content

Commit

Permalink
fix: fixed a bug where cells were not being set correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-s committed Oct 29, 2024
1 parent 46e684e commit 4d4f211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_hub/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def to_deeporigin(self):
rows = list(self.index)

api.set_data_in_cells(
values=self[column],
values=self[column][list(rows)],
row_ids=rows,
column_id=column,
database_id=self.attrs["id"],
Expand Down

0 comments on commit 4d4f211

Please sign in to comment.