From 77e3bcf5ce5b12aa212d9e778f81513f710ec833 Mon Sep 17 00:00:00 2001 From: Octave Perrin <operrin@lrtechnologies.fr> Date: Mon, 18 Nov 2024 15:19:31 +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 5dc8a1a40..e962a3919 100644 --- a/python_binding/graph/pybind_GraphView.cpp +++ b/python_binding/graph/pybind_GraphView.cpp @@ -149,8 +149,8 @@ void init_GraphView(py::module& m) { 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") @@ -164,8 +164,8 @@ void init_GraphView(py::module& m) { 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 node_name: string :return: The Node of the GraphView with corresponding name :rtype: Node )mydelimiter") -- GitLab