Skip to content

Commit 5650741

Browse files
authored
Fix formatting issue (#1036)
1 parent b1b550f commit 5650741

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/viam/components/audio_in/audio_in.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ async def get_audio(
3939
Get a stream of audio from the device
4040
4141
::
42+
4243
my_audio_in = AudioIn.from_robot(robot=machine, name="my_audio_in")
4344
4445
stream = await my_audio_in.get_audio(
@@ -63,6 +64,7 @@ async def get_properties(self, *, timeout: Optional[float] = None, **kwargs) ->
6364
Get the audio device's properties
6465
6566
::
67+
6668
my_audio_in = AudioIn.from_robot(robot=machine, name="my_audio_in")
6769
properties = await my_audio_in.get_properties()
6870

src/viam/components/audio_out/audio_out.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ async def play(
4242
Play the given audio data.
4343
4444
::
45+
4546
my_audio_out = AudioOut.from_robot(robot=machine, name="my_audio_out")
4647
4748
# With audio info
@@ -62,6 +63,7 @@ async def get_properties(self, *, extra: Optional[Dict[str, Any]] = None, timeou
6263
Get the audio output device's properties.
6364
6465
::
66+
6567
my_audio_out = AudioOut.from_robot(robot=machine, name="my_audio_out")
6668
properties = await my_audio_out.get_properties()
6769

0 commit comments

Comments
 (0)