Sketcher: convert indentations to spaces

This commit is contained in:
luzpaz
2023-01-23 14:04:42 +00:00
committed by Uwe
parent b05813fc3d
commit 593ab90400
7 changed files with 9 additions and 10 deletions

View File

@@ -1321,8 +1321,8 @@ PyObject* SketchObjectPy::addRectangularArray(PyObject *args)
std::vector<int> geoIdList;
Py::Sequence list(pcObj);
for (Py::Sequence::iterator it = list.begin(); it != list.end(); ++it) {
if (PyLong_Check((*it).ptr()))
geoIdList.push_back(PyLong_AsLong((*it).ptr()));
if (PyLong_Check((*it).ptr()))
geoIdList.push_back(PyLong_AsLong((*it).ptr()));
}
try {