Skip to content

Commit

Permalink
added comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdenobel committed May 6, 2024
1 parent 17c403c commit bcfa3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ioh/src/problem_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void define_helper_classes(py::module &m)
py::class_<MetaData>(m, "MetaData")
.def(py::init<int, int, std::string, int, ioh::common::OptimizationType, double>(), py::arg("problem_id"),
py::arg("instance"), py::arg("name"), py::arg("n_variables"), py::arg("optimization_type"),
py::arg("final_target") = 1e-8
py::arg("final_target") = 1e-8,
R"pbdoc(
Problem meta data. Contains static information about problems, such as their name and id.
Expand Down

0 comments on commit bcfa3b8

Please sign in to comment.