Skip to content

Commit

Permalink
Merge pull request #223 from NeuroML/experimental
Browse files Browse the repository at this point in the history
Fix for reloading saved spike data
  • Loading branch information
sanjayankur31 authored May 5, 2023
2 parents af3ff6d + 7378e40 commit 4ab36ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyneuroml/pynml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1801,10 +1801,10 @@ def reload_saved_data(
elif format == "ID_TIME":
id = int(values[0])
t = float(values[1])
logger.debug(
"Found a event in cell %s (%s) at t = %s" % (id, selections[id], t)
)
events[selections[id]].append(t)
logger.debug(
"Found a event in cell %s (%s) at t = %s" % (id, selections[id], t)
)
events[selections[id]].append(t)

if remove_dat_files_after_load:
logger.warning(
Expand Down

0 comments on commit 4ab36ad

Please sign in to comment.