From baf4a82e9ecea073778f7c7ab082103530decfb1 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 17 Jul 2023 14:43:42 -0700 Subject: [PATCH] commit wrong indent; but this is the output of our export --- ortools/linear_solver/python/model_builder_helper.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ortools/linear_solver/python/model_builder_helper.cc b/ortools/linear_solver/python/model_builder_helper.cc index 9d249fad670..08c3fa8b8a8 100644 --- a/ortools/linear_solver/python/model_builder_helper.cc +++ b/ortools/linear_solver/python/model_builder_helper.cc @@ -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",