summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_shape_base.py
diff options
context:
space:
mode:
authorGanesh Kathiresan <ganesh3597@gmail.com>2022-03-25 22:53:32 +0530
committerGanesh Kathiresan <ganesh3597@gmail.com>2022-03-25 22:53:32 +0530
commit2d2e7b592326f61ee78fb9b420d550a3a789cc4c (patch)
treedec3ab26ecdab32dce0911983110efc0b73addd1 /numpy/lib/tests/test_shape_base.py
parent54605f3f828c76639cc6dff5165c59ae2074988e (diff)
downloadnumpy-2d2e7b592326f61ee78fb9b420d550a3a789cc4c.tar.gz
MAINT: Linting fixes
Diffstat (limited to 'numpy/lib/tests/test_shape_base.py')
-rw-r--r--numpy/lib/tests/test_shape_base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_shape_base.py b/numpy/lib/tests/test_shape_base.py
index d75a1006c..564cdfeea 100644
--- a/numpy/lib/tests/test_shape_base.py
+++ b/numpy/lib/tests/test_shape_base.py
@@ -679,7 +679,8 @@ class TestKron:
expected_shape = np.multiply(normalised_shape_a, normalised_shape_b)
k = np.kron(a, b)
- assert np.array_equal(k.shape, expected_shape), "Unexpected shape from kron"
+ assert np.array_equal(
+ k.shape, expected_shape), "Unexpected shape from kron"
class TestTile: