Cleanup: remove redundant double parenthesis
This commit is contained in:
@@ -61,7 +61,7 @@ static bool pygpu_buffer_pyobj_as_shape(PyObject *shape_obj,
|
||||
Py_ssize_t shape_len = 0;
|
||||
if (PyLong_Check(shape_obj)) {
|
||||
shape_len = 1;
|
||||
if (((r_shape[0] = PyLong_AsLong(shape_obj)) < 1)) {
|
||||
if ((r_shape[0] = PyLong_AsLong(shape_obj)) < 1) {
|
||||
PyErr_SetString(PyExc_AttributeError, "dimension must be greater than or equal to 1");
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user