diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-05-09 18:39:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 18:39:35 -0600 |
commit | 17c61460bca7b6bd1839e00a3d9d249cc1ff49df (patch) | |
tree | 984932d10a7a462c1b7c431986a9f8aaa1dbedaf /numpy | |
parent | 73a49c5f80e488604c2f98e8f933cab01760e593 (diff) | |
download | numpy-17c61460bca7b6bd1839e00a3d9d249cc1ff49df.tar.gz |
STY: Add spaces around `=`.
[ci skip]
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/umath/ufunc_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/ufunc_object.c b/numpy/core/src/umath/ufunc_object.c index 47520fe57..072c0f66e 100644 --- a/numpy/core/src/umath/ufunc_object.c +++ b/numpy/core/src/umath/ufunc_object.c @@ -3563,7 +3563,7 @@ PyUFunc_Reduceat(PyUFuncObject *ufunc, PyArrayObject *arr, PyArrayObject *ind, op_axes_arrays[2]}; npy_uint32 op_flags[3]; int i, idim, ndim, otype_final; - int need_outer_iterator=0; + int need_outer_iterator = 0; NpyIter *iter = NULL; |