fix readability-identifier-length

This commit is contained in:
wmayer
2023-11-14 20:15:02 +01:00
parent 6a66034ce2
commit 73a1e90e45
38 changed files with 281 additions and 270 deletions

View File

@@ -53,9 +53,9 @@ PyTypeObject* ProgressIndicatorPy::type_object()
return Py::PythonExtension<ProgressIndicatorPy>::type_object();
}
bool ProgressIndicatorPy::check(PyObject* p)
bool ProgressIndicatorPy::check(PyObject* py)
{
return Py::PythonExtension<ProgressIndicatorPy>::check(p);
return Py::PythonExtension<ProgressIndicatorPy>::check(py);
}
PyObject* ProgressIndicatorPy::PyMake(struct _typeobject*, PyObject*, PyObject*)