diff --git a/python_binding/recipes/pybind_Recipes.cpp b/python_binding/recipes/pybind_Recipes.cpp
index 21478a5b14d609801f232b20cda25e7e1c0d9475..500367cb8f58bbfbf76394b0c83cd8ff848ff8cb 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.