Skip to content

Commit e5732c7

Browse files
committed
code style
1 parent 6677723 commit e5732c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numpy/_core/tests/test_numeric.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1724,7 +1724,8 @@ def test_nonzero_dtypes(self):
17241724
idxs = np.nonzero(x)[0]
17251725
assert_equal(np.array_equal(np.where(x != 0)[0], idxs), True)
17261726

1727-
integer_types = [np.int8, np.int16, np.int32, np.int64, np.uint8, np.uint16, np.uint32, np.uint64]
1727+
integer_types = [np.int8, np.int16, np.int32, np.int64,
1728+
np.uint8, np.uint16, np.uint32, np.uint64]
17281729
sample = rng.integers(0, 255, size=100)
17291730
for dtype in integer_types:
17301731
x = sample.astype(dtype)

0 commit comments

Comments
 (0)