Skip to content

Commit

Permalink
[python] amends PyTA for d856c6a
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Oct 12, 2024
1 parent a73a17b commit 1986ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/TiledArray/python/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void make_array_class(py::object m, const char *name) {
py::return_value_policy::reference)
.def_property_readonly("trange", &array::trange<Array>)
.def_property_readonly("shape", &array::shape<Array, py::tuple>)
.def("fill", &Array::fill, py::arg("value"),
.def("fill", &Array::template fill<>, py::arg("value"),
py::arg("skip_set") = false)
.def("init", &array::init_tiles<Array>)
// Array object needs be alive while iterator is used */
Expand Down

0 comments on commit 1986ccf

Please sign in to comment.