Cleanup: redundant parenthesis
This commit is contained in:
		| @@ -725,7 +725,7 @@ static PyObject *C_Matrix_Rotation(PyObject *cls, PyObject *args) | ||||
|                     "cannot create a 2x2 rotation matrix around arbitrary axis"); | ||||
|     return NULL; | ||||
|   } | ||||
|   if ((ELEM(matSize, 3, 4)) && (axis == NULL) && (vec == NULL)) { | ||||
|   if (ELEM(matSize, 3, 4) && (axis == NULL) && (vec == NULL)) { | ||||
|     PyErr_SetString(PyExc_ValueError, | ||||
|                     "Matrix.Rotation(): " | ||||
|                     "axis of rotation for 3d and 4d matrices is required"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user