File tree Expand file tree Collapse file tree 5 files changed +7
-2
lines changed
pupil_capture/pupil_capture_lsl_relay Expand file tree Collapse file tree 5 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 77 License details are in the file license.txt, distributed as part of this software.
88----------------------------------------------------------------------------------~(*)
99"""
10+
1011import numpy as np
1112from pylsl import XMLElement
1213
@@ -189,8 +190,8 @@ def make_extract_normpos(dim):
189190
190191
191192def make_extract_gaze_point_3d (dim ):
192- return (
193- lambda gaze : gaze ["gaze_point_3d" ][dim ] if "gaze_point_3d" in gaze else np .nan
193+ return lambda gaze : (
194+ gaze ["gaze_point_3d" ][dim ] if "gaze_point_3d" in gaze else np .nan
194195 )
195196
196197
Original file line number Diff line number Diff line change 77 License details are in the file license.txt, distributed as part of this software.
88----------------------------------------------------------------------------------~(*)
99"""
10+
1011from .channel import (
1112 confidence_channel ,
1213 fixation_dispersion_channel ,
Original file line number Diff line number Diff line change 77 License details are in the file license.txt, distributed as part of this software.
88----------------------------------------------------------------------------------~(*)
99"""
10+
1011from .channel import (
1112 confidence_channel ,
1213 diameter_2d_channels ,
Original file line number Diff line number Diff line change 77 License details are in the file license.txt, distributed as part of this software.
88----------------------------------------------------------------------------------~(*)
99"""
10+
1011import abc
1112import logging
1213from typing import Optional , Sequence
Original file line number Diff line number Diff line change 77 License details are in the file license.txt, distributed as part of this software.
88----------------------------------------------------------------------------------~(*)
99"""
10+
1011from .channel import (
1112 confidence_channel ,
1213 diameter_2d_channels ,
You can’t perform that action at this time.
0 commit comments