mirror of
https://github.com/google/bumble.git
synced 2026-07-19 15:00:48 +00:00
fix import checking
This commit is contained in:
+2
-2
@@ -675,7 +675,7 @@ async def run_receive(
|
||||
try:
|
||||
if not audio_io.check_audio_output(output):
|
||||
return
|
||||
except ValueError as error:
|
||||
except (ValueError, ImportError, OSError) as error:
|
||||
print(error)
|
||||
return
|
||||
|
||||
@@ -820,7 +820,7 @@ async def run_transmit(
|
||||
try:
|
||||
if not audio_io.check_audio_input(input):
|
||||
return
|
||||
except ValueError as error:
|
||||
except (ValueError, ImportError, OSError) as error:
|
||||
print(error)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user