xo-pyexpression: use Apply::make() instead of make_apply()

This commit is contained in:
Roland Conybeare 2024-06-17 16:56:30 -04:00
commit ac2c0a7f26

View file

@ -129,7 +129,7 @@ namespace xo {
.def_property_readonly("argv", &Apply::argv, py::doc("expressions (in position order) for function arguments"))
;
m.def("make_apply", &make_apply);
m.def("make_apply", &Apply::make);
// ----- Variables -----