From b316b3f0545a5971ee73b2bc5bc9b53206aa5fee Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Wed, 26 Feb 2025 20:11:16 +0000
Subject: [PATCH] upd Python binding of fold_constantOfShape

---
 python_binding/recipes/pybind_Recipes.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python_binding/recipes/pybind_Recipes.cpp b/python_binding/recipes/pybind_Recipes.cpp
index 21478a5b1..500367cb8 100644
--- a/python_binding/recipes/pybind_Recipes.cpp
+++ b/python_binding/recipes/pybind_Recipes.cpp
@@ -79,7 +79,7 @@ void init_Recipes(py::module &m)
     :type graph_view: :py:class:`aidge_core.GraphView`
     )mydelimiter");
 
-  m.def("remove_constantOfShape", static_cast<size_t(*)(std::shared_ptr<GraphView>)>(removeConstantOfShape), py::arg("graph_view"), R"mydelimiter(
+  m.def("fold_constantOfShape", static_cast<size_t(*)(std::shared_ptr<GraphView>)>(foldConstantOfShape), py::arg("graph_view"), R"mydelimiter(
     Fuses constant => Generic | constantOfShape and transforms it into a Producer
 
     :param graph_view: Graph view on which we want to apply the recipe.
-- 
GitLab