Temp fix for MacOS by removing baps welcome gen.
This commit is contained in:
parent
ae5cea9c62
commit
da5e1a2a5a
1 changed files with 21 additions and 14 deletions
|
@ -22,7 +22,10 @@ import logging
|
|||
from helpers.os_environment import isMacOS
|
||||
from helpers.device_manager import DeviceManager
|
||||
|
||||
if not isMacOS():
|
||||
# Rip, this doesn't like threading on MacOS.
|
||||
import pyttsx3
|
||||
|
||||
import config
|
||||
from typing import Dict, List
|
||||
|
||||
|
@ -270,6 +273,10 @@ def startServer():
|
|||
)
|
||||
channel_p[channel].start()
|
||||
|
||||
if not isMacOS():
|
||||
|
||||
# Temporary RIP.
|
||||
|
||||
# Welcome Speech
|
||||
|
||||
text_to_speach = pyttsx3.init()
|
||||
|
|
Loading…
Reference in a new issue