Skip to content

Commit

Permalink
Python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Feb 28, 2023
1 parent 2eeea7c commit d1f1fd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/binding/python/Dataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ void init_Dataset(py::module &m)
.def_readonly("rank", &Dataset::rank)
.def_property_readonly(
"dtype", [](const Dataset &d) { return dtype_to_numpy(d.dtype); })
.def_readwrite("options", &Dataset::options);
.def_readwrite("options", &Dataset::options)
.def_readwrite("joined_dimension", &Dataset::joinedDimension);
}

0 comments on commit d1f1fd1

Please sign in to comment.