Skip to content

Commit

Permalink
Fix docstring for SingleCellFile.__getitem__()
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Nov 13, 2024
1 parent 1b91bef commit ed11349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/singlecell_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void declare_singlecell_file_class(nb::module_& m) {
nb::rv_policy::take_ownership);
scell_file.def("cells", &singlecell_file::get_cells, "Get the list of available cells.",
nb::rv_policy::move);
scell_file.def("__getitem__", &singlecell_file::getitem,
scell_file.def("__getitem__", &singlecell_file::getitem, nb::arg("cell_id"),
"Open the Cooler file corresponding to the cell ID given as input.",
nb::rv_policy::move);
}
Expand Down

0 comments on commit ed11349

Please sign in to comment.