Skip to content

Commit

Permalink
Merge pull request #1927 from pupil-labs/fix_mutablebisector_insert
Browse files Browse the repository at this point in the history
Fix MutableBisector.insert()
  • Loading branch information
papr authored Jun 24, 2020
2 parents 244661b + 9753a86 commit 07b3481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pupil_src/shared_modules/player_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(self, data=(), data_ts=()):
)
)
elif not len(data):
self.data = np.array([])
self.data = np.array([], dtype=object)
self.data_ts = np.array([])
self.sorted_idc = []
else:
Expand Down

0 comments on commit 07b3481

Please sign in to comment.