From 7f9d26ea03e9d73238378480df03caacad28e272 Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <olivier.bichler@cea.fr>
Date: Fri, 17 Jan 2025 14:13:36 +0100
Subject: [PATCH] Added binding for updateInputsOutputs()

---
 python_binding/graph/pybind_GraphView.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp
index 60d80e783..4a044f575 100644
--- a/python_binding/graph/pybind_GraphView.cpp
+++ b/python_binding/graph/pybind_GraphView.cpp
@@ -151,6 +151,7 @@ void init_GraphView(py::module& m) {
           .def("get_ranked_nodes", &GraphView::getRankedNodes)
           .def("get_ranked_nodes_name", &GraphView::getRankedNodesName, py::arg("format"), py::arg("mark_non_unicity") = true)
           .def("set_dataformat", &GraphView::setDataFormat, py::arg("dataformat"))
+          .def("update_inputs_outputs", &GraphView::updateInputsOutputs)
             ;
 
      m.def("get_connected_graph_view", &getConnectedGraphView);
-- 
GitLab