Skip to content

Commit

Permalink
code-review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 2, 2024
1 parent fef0695 commit d048076
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions apis/python/src/tiledbsoma/pytiledbsoma.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,7 @@ PYBIND11_MODULE(pytiledbsoma, m) {
.def_readwrite(
"consolidate_and_vacuum", &PlatformConfig::consolidate_and_vacuum);

m.def(
"_update_dataframe_schema",
[](std::string uri,
std::shared_ptr<SOMAContext> ctx,
std::vector<std::string> drop_attrs,
std::map<std::string, std::string> add_attrs,
std::map<std::string, std::pair<std::string, bool>> add_enmrs) {
SOMADataFrame::update_dataframe_schema(
uri, ctx, drop_attrs, add_attrs, add_enmrs);
});
m.def("_update_dataframe_schema", &SOMADataFrame::update_dataframe_schema);

load_soma_context(m);
load_soma_object(m);
Expand Down

0 comments on commit d048076

Please sign in to comment.