Skip to content

Commit fe81b76

Browse files
committed
fixup: more linter issues
Original NumPy Commit: 38444c54aa905d064510e742f19c46129d9f4928
1 parent d74450e commit fe81b76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

array_api_strict/tests/test_manipulation_functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ def test_stack_errors():
2323

2424

2525
def test_reshape_copy():
26-
a = asarray(np.ones((2,3)))
26+
a = asarray(np.ones((2, 3)))
2727
b = reshape(a, (3, 2), copy=True)
2828
assert not np.shares_memory(a._array, b._array)
2929

30-
a = asarray(np.ones((2,3)))
30+
a = asarray(np.ones((2, 3)))
3131
b = reshape(a, (3, 2), copy=False)
3232
assert np.shares_memory(a._array, b._array)
3333

34-
a = asarray(np.ones((2,3)).T)
34+
a = asarray(np.ones((2, 3)).T)
3535
b = reshape(a, (3, 2), copy=True)
3636
assert_raises(AttributeError, lambda: reshape(a, (2, 3), copy=False))
3737

0 commit comments

Comments
 (0)