From 3e6342d19e4943f8df4e895cb9729303a0538538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Fri, 15 Mar 2024 15:27:24 +0100 Subject: [PATCH] chore : better python doc --- python_binding/graph/pybind_Node.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python_binding/graph/pybind_Node.cpp b/python_binding/graph/pybind_Node.cpp index 71f5b368b..116b9dc40 100644 --- a/python_binding/graph/pybind_Node.cpp +++ b/python_binding/graph/pybind_Node.cpp @@ -57,9 +57,9 @@ void init_Node(py::module& m) { :param other_node: Pointer to the other Node. :type other_node: :py:class: Node - :param out_id: ID of the current Node output to connect to the other Node. Default to 0. + :param out_id: ID of the output of the current Node to connect to the other Node. (If Node has 1 output max ID is 0). Default to 0. :type out_id: int - :param other_in_id: ID of the other Node input to connect to the current Node. Default to the first avaible data input. + :param other_in_id: ID of the input of the other Node to connect to the current Node (If the node is a Mul op it has 2 input then Max ID is 1).Default to the first avaible data input. :type other_in_id: int )mydelimiter") @@ -85,7 +85,7 @@ void init_Node(py::module& m) { :type other_view: :py:class: GraphView :param out_id: ID of the current Node output to connect to the other Node. Default to 0. :type out_id: int - :param other_in_id: Pair of Node and input connection ID for specifying the connection. If the GraphView whose content is linked has only one input Node, then it defaults to the first available data input ID of this Node. + :param other_in_id: Pair of Node and input connection ID for specifying the connection. If the GraphView whose content is linked has only one input Node, then it defaults to the first available data input ID of this Node. :type other_in_id: tuple[:py:class: Node, int] )mydelimiter") -- GitLab