diff --git a/src/Plugins/SimplnxCore/wrapping/python/simplnxpy.cpp b/src/Plugins/SimplnxCore/wrapping/python/simplnxpy.cpp index b449409c5a..dcb759c424 100644 --- a/src/Plugins/SimplnxCore/wrapping/python/simplnxpy.cpp +++ b/src/Plugins/SimplnxCore/wrapping/python/simplnxpy.cpp @@ -136,10 +136,9 @@ template auto BindVectorParameter(py::handle scope, const char* name) { auto vectorParameter = py::class_(scope, name); - vectorParameter.def(py::init(), "name"_a, "human_name"_a, "help_text"_a, "default_value"_a, - "names"_a); + vectorParameter.def(py::init(), "name"_a, "human_name"_a, "help_text"_a, "default_value"_a); vectorParameter.def(py::init(), "name"_a, "human_name"_a, - "help_text"_a, "default_value"_a); + "help_text"_a, "default_value"_a, "names"_a); return vectorParameter; }