From 4d4f211c68c3d48bf1104d85576d8cc09300af28 Mon Sep 17 00:00:00 2001 From: Srinivas Gorur-Shandilya Date: Tue, 29 Oct 2024 13:50:51 -0400 Subject: [PATCH] fix: fixed a bug where cells were not being set correctly --- src/data_hub/dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_hub/dataframe.py b/src/data_hub/dataframe.py index 6cf1de3..667e803 100644 --- a/src/data_hub/dataframe.py +++ b/src/data_hub/dataframe.py @@ -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"],