Skip to content

Commit 055664d

Browse files
committed
lint
1 parent b51eafd commit 055664d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scipy/interpolate/tests/test_bsplines.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,9 +658,11 @@ def test_memmap(self, tmpdir):
658658

659659
expected = b(xx)
660660

661-
t_mm = np.memmap(str(tmpdir.join('t.dat')), mode='w+', dtype=b.t.dtype, shape=b.t.shape)
661+
t_mm = np.memmap(
662+
str(tmpdir.join('t.dat')), mode='w+', dtype=b.t.dtype, shape=b.t.shape)
662663
t_mm[:] = b.t
663-
c_mm = np.memmap(str(tmpdir.join('c.dat')), mode='w+', dtype=b.c.dtype, shape=b.c.shape)
664+
c_mm = np.memmap(
665+
str(tmpdir.join('c.dat')), mode='w+', dtype=b.c.dtype, shape=b.c.shape)
664666
c_mm[:] = b.c
665667
b.t = t_mm
666668
b.c = c_mm

0 commit comments

Comments
 (0)