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):