Skip to content
Snippets Groups Projects
Commit 048fd3dd authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Refs #13692. Fixed an error for default value.

parent 48fc951a
No related branches found
No related tags found
No related merge requests found
...@@ -78,8 +78,8 @@ void export_leaf_classes() { ...@@ -78,8 +78,8 @@ void export_leaf_classes() {
"Initialize the algorithm from a string representation") "Initialize the algorithm from a string representation")
.staticmethod("fromString") .staticmethod("fromString")
.def("createChildAlgorithm", &Algorithm::createChildAlgorithm, .def("createChildAlgorithm", &Algorithm::createChildAlgorithm,
(arg("self"), arg("name"), arg("startProgress"), arg("endProgress"), (arg("self"), arg("name"), arg("startProgress") = -1.0, arg("endProgress") = -1.0,
arg("enableLogging"), arg("version")), arg("enableLogging") = true, arg("version") = -1),
"Creates and intializes a named child algorithm. Output workspaces " "Creates and intializes a named child algorithm. Output workspaces "
"are given a dummy name.") "are given a dummy name.")
.def("declareProperty", .def("declareProperty",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment