From 3531f9c9d46fda98b8df045652fc1a0499b15e10 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Wed, 8 Jun 2022 20:59:06 +0200 Subject: [PATCH] fix typo --- libsrc/occ/python_occ_shapes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/occ/python_occ_shapes.cpp b/libsrc/occ/python_occ_shapes.cpp index 8127579b..b4f380ef 100644 --- a/libsrc/occ/python_occ_shapes.cpp +++ b/libsrc/occ/python_occ_shapes.cpp @@ -1544,7 +1544,7 @@ DLL_HEADER void ExportNgOCCShapes(py::module &m) }; py::class_ (m, "ListOfShapes") - .def(py::init()) + .def(py::init>()) .def("__iter__", [](ListOfShapes &s) { return py::make_iterator(ListOfShapesIterator(&*s.begin()), ListOfShapesIterator(&*s.end()));