diff --git a/python_binding/data/pybind_Data.cpp b/python_binding/data/pybind_Data.cpp
index 4e17328e512e12214defe2893d498be7b82e9159..9db0a90769c2e69b567e83559d43e4fa1430a48b 100644
--- a/python_binding/data/pybind_Data.cpp
+++ b/python_binding/data/pybind_Data.cpp
@@ -53,20 +53,21 @@ void init_Data(py::module& m){
     e_dtype.def("__str__", [enum_names](const DataType& dtype) {
         return enum_names[static_cast<int>(dtype)];
     }, py::prepend());;
+
     // TODO : extend with more values !
-    py::enum_<DataType>(m, "dtype")
-    .value("float64", DataType::Float64)
-    .value("float32", DataType::Float32)
-    .value("float16", DataType::Float16)
-    .value("int8", DataType::Int8)
-    .value("int16", DataType::Int16)
-    .value("int32", DataType::Int32)
-    .value("int64", DataType::Int64)
-    .value("uint8", DataType::UInt8)
-    .value("uint16", DataType::UInt16)
-    .value("uint32", DataType::UInt32)
-    .value("uint64", DataType::UInt64)
-    ;
+    // py::enum_<DataType>(m, "dtype")
+    // .value("float64", DataType::Float64)
+    // .value("float32", DataType::Float32)
+    // .value("float16", DataType::Float16)
+    // .value("int8", DataType::Int8)
+    // .value("int16", DataType::Int16)
+    // .value("int32", DataType::Int32)
+    // .value("int64", DataType::Int64)
+    // .value("uint8", DataType::UInt8)
+    // .value("uint16", DataType::UInt16)
+    // .value("uint32", DataType::UInt32)
+    // .value("uint64", DataType::UInt64)
+    // ;
 
     py::enum_<DataFormat>(m, "dformat")
     .value("Default", DataFormat::Default)