Skip to content

Commit a5cf26e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a0740eb commit a5cf26e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flox/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,9 @@ def factorize_(
537537
right = expect.closed_right
538538
idx = np.digitize(
539539
flat,
540-
bins=np.array(bins.view(np.intp) if bins.dtype.kind == "M" else bins, like=flat),
540+
bins=np.array(
541+
bins.view(np.intp) if bins.dtype.kind == "M" else bins, like=flat
542+
),
541543
right=right,
542544
)
543545
idx -= 1

0 commit comments

Comments
 (0)