Skip to content

Commit

Permalink
clean up old boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes committed Sep 14, 2024
1 parent eec0fe9 commit e60ca85
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions ebtelplusplus/extern/ebtel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,18 +112,10 @@ py::dict run(py::dict& config_dict)
}

PYBIND11_MODULE(_core, m) {
m.doc() = R"pbdoc(
Pybind11 example plugin
-----------------------
.. currentmodule:: python_example
.. autosummary::
:toctree: _generate
add
subtract
)pbdoc";

m.def("run", &run, py::return_value_policy::copy, R"pbdoc(
Run ebtel++
Some other explanation about ebtel++
m.def("run",
&run,
py::return_value_policy::copy,
R"pbdoc(
Python binding to ebtelplusplus
)pbdoc");
}

0 comments on commit e60ca85

Please sign in to comment.