Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Don't convert the index columns produced by Pandas. #9

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/circuit/sonata_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ using namespace arrow;
using namespace std;


static const unordered_set<string> COLUMNS_TO_SKIP{"synapse_id"};
static const unordered_set<string> COLUMNS_TO_SKIP{"synapse_id", "__index_level_0__"};


SonataWriter::SonataWriter(const string & filepath,
Expand Down
Loading