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)