From 67c82f1dec68c43ce79b0e83d50e8e172d42d8e8 Mon Sep 17 00:00:00 2001 From: Matthew Rocklin Date: Thu, 24 May 2018 15:37:58 -0400 Subject: [PATCH] flake8 --- dask/array/tests/test_rechunk.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dask/array/tests/test_rechunk.py b/dask/array/tests/test_rechunk.py index 433d3dc2737..ea076a56477 100644 --- a/dask/array/tests/test_rechunk.py +++ b/dask/array/tests/test_rechunk.py @@ -604,8 +604,8 @@ def test_rechunk_avoid_needless_chunking(): y = x.rechunk(8) dsk = y.__dask_graph__() assert len(dsk) <= 8 + 2 - - + + @pytest.mark.parametrize('shape,chunks,bs,expected', [ (100, 1, 10, (10,) * 10), (100, 50, 10, (10,) * 10), @@ -687,4 +687,4 @@ def test_rechunk_zero(): with dask.config.set({'array.chunk-size': '1B'}): x = da.ones(10, chunks=(5,)) y = x.rechunk('auto') - assert y.chunks == ((1,) * 10,) \ No newline at end of file + assert y.chunks == ((1,) * 10,)