Skip to content
Snippets Groups Projects
Commit 175657a0 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix warning issue kw_only.

parent e9c566d1
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,6 @@ void init_GenericOperator(py::module& m) {
}
return genericNode;
}
, py::arg("type"), py::arg("nb_data"), py::arg("nb_param"), py::arg("nb_out"), py::arg("name") = "");
, py::arg("type"), py::arg("nb_data"), py::arg("nb_param"), py::arg("nb_out"), py::arg("name") = "", py::kw_only());
}
} // namespace Aidge
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