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
2 merge requests!105version 0.2.0,!73Quality of life
Pipeline #37500 failed
...@@ -52,6 +52,6 @@ void init_GenericOperator(py::module& m) { ...@@ -52,6 +52,6 @@ void init_GenericOperator(py::module& m) {
} }
return genericNode; 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 } // 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