diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp index 7edb4adcf2fbf552cbbc344eaedc721910d52f27..318d93aef7f92f1ae3465aecbeaec402afe6702c 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")