We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3daa2f4 commit 9762c22Copy full SHA for 9762c22
1 file changed
src/binding/python/Attributable.cpp
@@ -502,7 +502,9 @@ void init_Attributable(py::module &m)
502
"series_extension", &Attributable::MyPath::seriesExtension)
503
.def_readonly("group", &Attributable::MyPath::group)
504
.def_readonly("access", &Attributable::MyPath::access)
505
- .def_property_readonly("file_path", &Attributable::MyPath::filePath);
+ .def_property_readonly("file_path", &Attributable::MyPath::filePath)
506
+ .def_property_readonly(
507
+ "openPMD_path", &Attributable::MyPath::openPMDPath);
508
509
py::class_<Attributable>(m, "Attributable")
510
.def(py::init<Attributable const &>())
0 commit comments