From c3ebc5e777c63b3538c448502c9d4a1f117bb3d5 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Mon, 24 Oct 2022 22:49:16 +0100 Subject: [PATCH] typo fix --- obsws_python/baseclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obsws_python/baseclient.py b/obsws_python/baseclient.py index 5a7e283..fd61da6 100644 --- a/obsws_python/baseclient.py +++ b/obsws_python/baseclient.py @@ -89,5 +89,5 @@ class ObsClient: payload["d"]["requestData"] = req_data self.ws.send(json.dumps(payload)) response = json.loads(self.ws.recv()) - self.logger.debug(f"Reponse received {response}") + self.logger.debug(f"Response received {response}") return response["d"]