Skip to content

Commit e47a62f

Browse files
committed
Make sure ipydguuid is removed in data getter
Signed-off-by: martinRenou <[email protected]>
1 parent ac4c74d commit e47a62f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ipydatagrid/datagrid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,7 @@ def data(self):
472472
)
473473
final_df = df.set_index(trimmed_primary_key)
474474
final_df = final_df[final_df.columns[:-1]]
475+
final_df.drop(columns=["ipydguuid"], inplace=True, errors="ignore")
475476
return final_df
476477

477478
@data.setter

0 commit comments

Comments
 (0)