Skip to content

Commit

Permalink
model was missing from kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhbell committed Oct 23, 2023
1 parent 3928724 commit 53392a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/pybind11_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ void init_teqp(py::module& m) {

m.def("_make_model", &teqp::cppinterface::make_model, "json_data"_a, py::arg_v("validate", true));
m.def("attach_model_specific_methods", &attach_model_specific_methods);
m.def("build_ancillaries", &teqp::ancillaries::build_ancillaries, "Tc"_a, "rhoc"_a, "Tmin"_a, py::arg_v("flags", std::nullopt, "None"));
m.def("build_ancillaries", &teqp::ancillaries::build_ancillaries, "model"_a, "Tc"_a, "rhoc"_a, "Tmin"_a, py::arg_v("flags", std::nullopt, "None"));

using namespace teqp::iteration;
py::class_<NRIterator>(m, "NRIterator")
Expand Down

0 comments on commit 53392a4

Please sign in to comment.