Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Code formatting ala black (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashogstrom authored Feb 7, 2023
1 parent 14c7a79 commit c9d5d3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/streamgazertsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@


async def stream_rtsp():
async with connect_to_glasses.with_hostname(os.environ["G3_HOSTNAME"], using_zeroconf=True) as g3:
async with connect_to_glasses.with_hostname(
os.environ["G3_HOSTNAME"], using_zeroconf=True
) as g3:
async with g3.stream_rtsp(scene_camera=True, gaze=True) as streams:
async with streams.gaze.decode() as gaze_stream, streams.scene_camera.decode() as scene_stream:
for i in range(200):
Expand Down

0 comments on commit c9d5d3e

Please sign in to comment.