Skip to content

Commit

Permalink
Fixes BBPBG-1147
Browse files Browse the repository at this point in the history
  • Loading branch information
st4rl3ss committed Apr 5, 2024
1 parent 25f54c6 commit 4493165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurodamus/io/cell_readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def validate_property(prop_name):
prop_data = node_pop.get_dynamics_attribute(prop_name, node_sel)
else:
prop_data = node_pop.get_attribute(prop_name, node_sel)
for gid, val in zip(gidvec, prop_data):
for gid, val in zip(meinfos.keys(), prop_data):
meinfos[gid].extra_attrs[prop_name] = val

return gidvec, meinfos, fullsize
Expand Down

0 comments on commit 4493165

Please sign in to comment.