diff options
Diffstat (limited to 'common/pybindings.cc')
-rw-r--r-- | common/pybindings.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc index 4711f10c..b6d5e48a 100644 --- a/common/pybindings.cc +++ b/common/pybindings.cc @@ -109,8 +109,8 @@ PYBIND11_MODULE(MODULE_NAME, m) py::class_<GraphicElement>(m, "GraphicElement") .def(py::init<GraphicElement::type_t, GraphicElement::style_t, float, float, float, float, float>(), - py::arg("type"), py::arg("style"), py::arg("x1"), py::arg("y1"), py::arg("x2"), py::arg("y2"), py::arg("z") - ) + py::arg("type"), py::arg("style"), py::arg("x1"), py::arg("y1"), py::arg("x2"), py::arg("y2"), + py::arg("z")) .def_readwrite("type", &GraphicElement::type) .def_readwrite("x1", &GraphicElement::x1) .def_readwrite("y1", &GraphicElement::y1) |