From ba3596079053b794aa0415ab7ae045a1d926865c Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 23 Mar 2026 12:00:32 +0000 Subject: [PATCH] enforce keyword arg to match {Client}.__init__() --- streamlabsio/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamlabsio/client.py b/streamlabsio/client.py index 99749e5..5dbbbf3 100644 --- a/streamlabsio/client.py +++ b/streamlabsio/client.py @@ -76,5 +76,5 @@ class Client: self._logger.info('Disconnected from Streamlabs Socket API') -def request_client_object(token: str, raw: bool = False) -> Client: +def request_client_object(*, token: str, raw: bool = False) -> Client: return Client(token=token, raw=raw)