diff --git a/src/npe.cc b/src/npe.cc
index 8e3eeabbe5f5931a2b1a95c8e2614a248cc31d74..271a4585d6bf5e2965f04cebe61277a423c6a28d 100644
--- a/src/npe.cc
+++ b/src/npe.cc
@@ -7,11 +7,8 @@ namespace py = pybind11;
 PYBIND11_MODULE(npe, m) {
     m.doc() = "NPE utilities";
     py::class_<JMuonNPE_t>(m, "JMuonNPE")
-        .def(py::init<const std::string &, double, int, double>(),
-             py::arg("file_descriptor"),
-             py::arg("TTS"),
-             py::arg("number_of_points") = 25,
-             py::arg("epsilon") = 1e-10)
+        .def(py::init<const std::string &>(),
+             py::arg("file_descriptor"))
         .def("calculate", &JMuonNPE_t::calculate,
              py::arg("E"),
              py::arg("R"),