Skip to content

Commit

Permalink
EventsSaver bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyzverev committed Oct 2, 2023
1 parent cfe44f3 commit 999668a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recon_lw/EventsSaver.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def save_events(self, batch):
self._files[scope] = open(os.path.join(self._path, f"{scope}_scope_{self._event_sequence['stamp']}.pickle"), 'wb')

pickle.dump(e, self._files[scope])
return
continue
if scope not in self._scopes_buffers:
self._scopes_buffers[scope] = []
self._scopes_buffers[scope].append(e)
Expand Down

0 comments on commit 999668a

Please sign in to comment.