Base: Fix size in array

This commit is contained in:
wmayer
2025-05-23 19:07:38 +02:00
committed by Benjamin Nauck
parent a4d971020d
commit d1e9c7b013

View File

@@ -182,7 +182,7 @@ PyObject* PlacementPy::translate(PyObject* args)
PyObject* PlacementPy::rotate(PyObject* args, PyObject* kwds)
{
double angle {};
static const std::array<const char*, 6> kwlist {"center", "axis", "angle", "comp", nullptr};
static const std::array<const char*, 5> kwlist {"center", "axis", "angle", "comp", nullptr};
Vector3d center;
Vector3d axis;
PyObject* pyComp = Py_False; // NOLINT