Skip to content

Commit

Permalink
Removing sorting with pkl file beacuse it doesnt exist.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuchiyama-araya committed Jan 20, 2025
1 parent 249985c commit e7dca31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion studio/app/common/core/experiment/experiment_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __copy_data_update_pickle(

updated_data = self.__replace_ids_recursive(data, old_id, new_id)
with open(file_path, "wb") as file:
pickle.dump(updated_data, file, sort_keys=False)
pickle.dump(updated_data, file)

logger.info(f"Updated Pickle: {file_path}")
except Exception as e:
Expand Down

0 comments on commit e7dca31

Please sign in to comment.