Skip to content

Commit

Permalink
linter pass
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Nov 1, 2024
1 parent e7beaf4 commit 7ad07c7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/async/stream_eyes_camera_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api import Device, Network, receive_video_frames
from pupil_labs.realtime_api import Device, Network, receive_video_frames # noqa


async def main(preview_frame_rate=30):
Expand Down
2 changes: 1 addition & 1 deletion examples/async/stream_scene_camera_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api import Device, Network, receive_video_frames
from pupil_labs.realtime_api import Device, Network, receive_video_frames # noqa


async def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/async/stream_video_with_overlayed_gaze.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api import (
from pupil_labs.realtime_api import ( # noqa
Device,
Network,
receive_gaze_data,
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/stream_eyes_camera_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api.simple import discover_one_device
from pupil_labs.realtime_api.simple import discover_one_device # noqa


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/stream_scene_camera_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api.simple import discover_one_device
from pupil_labs.realtime_api.simple import discover_one_device # noqa


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/stream_scene_eyes_and_gaze.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api.simple import discover_one_device
from pupil_labs.realtime_api.simple import discover_one_device # noqa


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/stream_video_with_overlayed_gaze.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cv2.imshow("cv/av bug", np.zeros(1))
cv2.destroyAllWindows()

from pupil_labs.realtime_api.simple import discover_one_device
from pupil_labs.realtime_api.simple import discover_one_device # noqa


def main():
Expand Down

0 comments on commit 7ad07c7

Please sign in to comment.