Skip to content
Snippets Groups Projects
Commit 0a07e8a1 authored by Nathan Thoumine's avatar Nathan Thoumine
Browse files

remove docstring test

parent e9edab2b
No related branches found
No related tags found
No related merge requests found
......@@ -23,16 +23,7 @@ void init_Graph(py::module& m)
py::arg("device_id") = 0,
py::arg("nb_bits") = -32)
.def("device", &Graph::device, py::arg("id"),
R"mydelimiter(
My awesome method ...
:param arg1: My arg1 which does xyz
:type arg1: int
:param default_arg: a default arg which is a node you can give one or not, Default None
:type default_arg: :py:class:`aidge_core.Node`, optional
)mydelimiter")
.def("device", &Graph::device, py::arg("id"))
.def("load", &Graph::load, py::arg("filepath"))
.def("save", &Graph::save, py::arg("filepath"))
.def("calibrate", &Graph::calibrate, py::arg("calibration_folder_path") = "./calibration_folder/", py::arg("cache_file_path") = "./calibration_cache", py::arg("batch_size") = 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment