From 879e43789d588e62c6be45e797a7d6073c338b2f Mon Sep 17 00:00:00 2001 From: Lawrence Akka Date: Thu, 1 Dec 2022 11:21:56 +0000 Subject: [PATCH] Fix typo --- neohubapi/neohub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neohubapi/neohub.py b/neohubapi/neohub.py index 477c49f..bd1bd85 100644 --- a/neohubapi/neohub.py +++ b/neohubapi/neohub.py @@ -47,7 +47,7 @@ class NeoHub: 'You must provide a token for a connection on port 4243, or use a legacy connection on port 4242') if port == 4242 and token is not None: raise NeoHubConnectionError( - 'You have provied a token, so you must use port=4243') + 'You have provided a token, so you must use port=4243') self._websocket = None async def _send_message(self, reader: asyncio.StreamReader, writer: asyncio.StreamWriter, message: str):