From 724942e1b4d1dc7c89f863e26d81b5b83398891a Mon Sep 17 00:00:00 2001 From: Zohaib Rauf Date: Sun, 11 Feb 2024 05:32:43 -0800 Subject: [PATCH] Fixed an error message --- OS/01/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OS/01/device.py b/OS/01/device.py index 3241532..3e71554 100644 --- a/OS/01/device.py +++ b/OS/01/device.py @@ -201,7 +201,7 @@ if __name__ == "__main__": # Configuration for WebSocket WS_URL = os.getenv('SERVER_CONNECTION_URL') if not WS_URL: - raise ValueError("The environment variable SERVER_URL is not set. Please set it to proceed.") + raise ValueError("The environment variable SERVER_CONNECTION_URL is not set. Please set it to proceed.") # Start the WebSocket communication asyncio.create_task(websocket_communication(WS_URL))