From bfd6271d0740ec181454da23f298231fff7262fb Mon Sep 17 00:00:00 2001 From: Octave Perrin <operrin@lrtechnologies.fr> Date: Mon, 18 Nov 2024 14:44:25 +0100 Subject: [PATCH] python binds correct syntax --- python_binding/graph/pybind_GraphView.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp index 7edb4adcf..318d93aef 100644 --- a/python_binding/graph/pybind_GraphView.cpp +++ b/python_binding/graph/pybind_GraphView.cpp @@ -146,8 +146,8 @@ void init_GraphView(py::module& m) { When a Node is removed, the clone() method automatically finds the next valid parent in line, going backward in the graph and connects it if that makes sense without ambiguity (effectively treating the removed Node as an identity operation). - :param: cloneNode Callback function to clone a node - :type: cloneNode Node + :param cloneNode Callback function to clone a node + :type cloneNode Node :return: Cloned GraphView :rtype: GraphView )mydelimiter") @@ -160,8 +160,8 @@ void init_GraphView(py::module& m) { .def("get_node", &GraphView::getNode, py::arg("node_name"), R"mydelimiter( Get the Node with the corresponding name if it is in the GraphView. - :param: node_name The name of the Node - :type: string + :param node_name The name of the Node + :type string :return: The Node of the GraphView with corresponding name :rtype: Node )mydelimiter") -- GitLab