Skip to content

Commit eee80e3

Browse files
style: pre-commit fixes
1 parent c4c1be0 commit eee80e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/awkward/_reducers.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ def _dtype_for_kernel(cls, dtype: DTypeLike) -> DTypeLike:
6262
else:
6363
return dtype
6464

65-
_use32 = (ak._util.win or ak._util.bits32) and not ak._util.numpy2 and np.intp is np.int32
65+
_use32 = (
66+
(ak._util.win or ak._util.bits32)
67+
and not ak._util.numpy2
68+
and np.intp is np.int32
69+
)
6670

6771
@classmethod
6872
def _promote_integer_rank(cls, given_dtype: DTypeLike) -> DTypeLike:

0 commit comments

Comments
 (0)