Skip to content

Commit

Permalink
Make timestamp param optional
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Oct 30, 2024
1 parent a68150b commit ca166b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def register_surface(self, tag_verts, window_size):

self._window_size = window_size

def send_event(self, event_name, timestamp_ns):
def send_event(self, event_name, timestamp_ns=None):
if timestamp_ns == 0:
timestamp_ns = None

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "psychopy-eyetracker-pupil-labs"
version = "0.5.0"
version = "0.5.1"
description = "Extension package for PsychoPy which adds support for Pupil Labs eyetrackers."
readme = "README.md"
requires-python = ">= 3.7"
Expand Down

0 comments on commit ca166b3

Please sign in to comment.