From f6f542e765de7c30cddad26ab3026f910973e628 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 17 Nov 2022 12:11:53 +0000 Subject: [PATCH] no need to merge here. --- 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 6d26e54..4b8ba2f 100644 --- a/obsws_python/baseclient.py +++ b/obsws_python/baseclient.py @@ -41,7 +41,7 @@ class ObsClient: filepath = Path.cwd() / "config.toml" if filepath.exists(): with open(filepath, "rb") as f: - conn |= tomllib.load(f) + conn = tomllib.load(f) return conn["connection"] if "connection" in conn else conn def authenticate(self):