From b86b0930b0ff7c6b30e136d823a9f102504de574 Mon Sep 17 00:00:00 2001 From: "Victor A." <52110451+cs50victor@users.noreply.github.com> Date: Mon, 25 Mar 2024 16:42:47 -0400 Subject: [PATCH] fix: unsupported escape sequence in string literal --- software/source/clients/base_device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/source/clients/base_device.py b/software/source/clients/base_device.py index cc152b3..40af5a2 100644 --- a/software/source/clients/base_device.py +++ b/software/source/clients/base_device.py @@ -258,7 +258,7 @@ class Device: if CAMERA_ENABLED: print("\nHold the spacebar to start recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.") else: - print("\Hold the spacebar to start recording. Press CTRL-C to exit.") + print("\nHold the spacebar to start recording. Press CTRL-C to exit.") asyncio.create_task(self.message_sender(websocket)) @@ -351,4 +351,4 @@ class Device: def start(self): if os.getenv('TEACH_MODE') != "True": asyncio.run(self.start_async()) - p.terminate() \ No newline at end of file + p.terminate()