Skip to content

Commit

Permalink
commit wrong indent; but this is the output of our export
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Jul 17, 2023
1 parent 844a539 commit baf4a82
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ortools/linear_solver/python/model_builder_helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ PYBIND11_MODULE(model_builder_helper, m) {
.def("import_from_lp_file", &ModelBuilderHelper::ImportFromLpFile,
arg("lp_file"))
#else
.def("import_from_lp_string", [](const std::string& lp_string) {
LOG(INFO) << "Parsing LP string is not compiled in";
})
.def("import_from_lp_file", [](const std::string& lp_file) {
LOG(INFO) << "Parsing LP file is not compiled in";
})
.def("import_from_lp_string", [](const std::string& lp_string) {
LOG(INFO) << "Parsing LP string is not compiled in";
})
.def("import_from_lp_file", [](const std::string& lp_file) {
LOG(INFO) << "Parsing LP file is not compiled in";
})
#endif
.def(
"fill_model_from_sparse_data",
Expand Down

0 comments on commit baf4a82

Please sign in to comment.