Skip to content

Commit

Permalink
Fix lazy-loading events
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Aug 30, 2024
1 parent f6a2b38 commit 0f3df3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pupil_labs/neon_recording/neon_recording.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ def events(self) -> EventStream:
Returns:
EventStream
"""
if self.streams["event"] is None:
self.streams["event"] = EventStream(self)
if self.streams["events"] is None:
self.streams["events"] = EventStream(self)

return self.streams["events"]

Expand Down

0 comments on commit 0f3df3d

Please sign in to comment.