some type clearification

This commit is contained in:
jriegel
2014-08-21 17:59:17 +02:00
parent 34c5487113
commit d46e0d0cb6
6 changed files with 23 additions and 23 deletions

View File

@@ -54,7 +54,7 @@ DocumentObjectExecReturn *FeaturePythonImp::execute()
Py::Object feature = static_cast<PropertyPythonObject*>(proxy)->getValue();
if (feature.hasAttr("__object__")) {
Py::Callable method(feature.getAttr(std::string("execute")));
Py::Tuple args(0);
Py::Tuple args;
method.apply(args);
}
else {