Add changes on linted files
This commit is contained in:
parent
beef03b7b4
commit
ec1e41eb4a
|
@ -58,7 +58,9 @@ def split_into_sentences(text):
|
|||
|
||||
|
||||
# Queues
|
||||
from_computer = queue.Queue() # Just for computer messages from the device. Sync queue because interpreter.run is synchronous
|
||||
from_computer = (
|
||||
queue.Queue()
|
||||
) # Just for computer messages from the device. Sync queue because interpreter.run is synchronous
|
||||
from_user = asyncio.Queue() # Just for user messages from the device.
|
||||
to_device = asyncio.Queue() # For messages we send.
|
||||
|
||||
|
|
|
@ -237,4 +237,6 @@ For example:
|
|||
|
||||
ALWAYS REMEMBER: You are running on a device called the O1, where the interface is entirely speech-based. Make your responses to the user **VERY short.**
|
||||
|
||||
""".strip().replace("OI_SKILLS_DIR", os.path.join(os.path.dirname(__file__), "skills"))
|
||||
""".strip().replace(
|
||||
"OI_SKILLS_DIR", os.path.join(os.path.dirname(__file__), "skills")
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue