From d6be877be92c458824bc5d27f85beab5eb4e7876 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 9 Jul 2024 23:11:08 +0200 Subject: [PATCH] Fixed case issue --- python_binding/utils/pybind_Attributes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_binding/utils/pybind_Attributes.cpp b/python_binding/utils/pybind_Attributes.cpp index 6989e1274..135ebb48e 100644 --- a/python_binding/utils/pybind_Attributes.cpp +++ b/python_binding/utils/pybind_Attributes.cpp @@ -31,7 +31,7 @@ DynamicAttributes test_DynamicAttributes_binding() { } double test_DynamicAttributes_binding_check(DynamicAttributes& attrs) { - return attrs.getAttr<double>("D"); + return attrs.getAttr<double>("d"); } void init_Attributes(py::module& m){ -- GitLab