From 33ed217bf8b89d8cc41848a62073fabb6251e6b2 Mon Sep 17 00:00:00 2001 From: Timothy Smith Date: Mon, 8 Jul 2019 23:40:41 +0200 Subject: [PATCH] Shorten long lines in response to flake8 complaint --- test.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 356ca99..e7780c0 100644 --- a/test.py +++ b/test.py @@ -77,10 +77,12 @@ def test_flux_splitting_uniform_grid( characteristic_fluxes_pos=fluxes_pos_dev, characteristic_fluxes_neg=fluxes_neg_dev) - fluxes_pos_expected = u.expand_to_6(u.transposed_array_from_string(fluxes_pos_expected_str)) + fluxes_pos_expected = u.expand_to_6( + u.transposed_array_from_string(fluxes_pos_expected_str)) u.compare_arrays(fluxes_pos_dev.get(), fluxes_pos_expected) - fluxes_neg_expected = u.expand_to_6(u.transposed_array_from_string(fluxes_neg_expected_str)) + fluxes_neg_expected = u.expand_to_6( + u.transposed_array_from_string(fluxes_neg_expected_str)) u.compare_arrays(fluxes_neg_dev.get(), fluxes_neg_expected) -- GitLab