From 4ec4dec263e55292a888d3dc70ed1311c1ac831e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Chac=C3=B3n?= Date: Sun, 6 Oct 2024 08:55:17 -0600 Subject: [PATCH] Update lib.rs --- src/rust/lqos_python/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust/lqos_python/src/lib.rs b/src/rust/lqos_python/src/lib.rs index 0e06b5bc..bf9574d9 100644 --- a/src/rust/lqos_python/src/lib.rs +++ b/src/rust/lqos_python/src/lib.rs @@ -552,7 +552,7 @@ fn automatic_import_uisp() -> PyResult { #[pyfunction] fn automatic_import_splynx() -> PyResult { let config = lqos_config::load_config().unwrap(); - Ok(config.spylnx_integration.enable_splynx) + Ok(config.spylnx_integration.enable_spylnx) } #[pyfunction]