From 512a265247ec3283a50222aa7d186876a6a0c806 Mon Sep 17 00:00:00 2001 From: andream Date: Fri, 14 Jun 2024 15:17:45 +0200 Subject: [PATCH] add a few more spaces --- pyresample/test/test_bucket.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyresample/test/test_bucket.py b/pyresample/test/test_bucket.py index c08af510..d7797a19 100644 --- a/pyresample/test/test_bucket.py +++ b/pyresample/test/test_bucket.py @@ -214,7 +214,7 @@ def test_nonzero_set_empty_bucket_to_number(self): # 5 is untouched in a single bin self.assertEqual(np.count_nonzero(result == 5.), 1) # all-nan and rest is 4095 - self.assertEqual(np.count_nonzero(result == 4095), 2048*2560-2) + self.assertEqual(np.count_nonzero(result == 4095), 2048 * 2560 - 2) self.assertEqual(np.nanmin(result), 2) def test_nonzero_set_empty_bucket_to_npnan(self): @@ -226,7 +226,7 @@ def test_nonzero_set_empty_bucket_to_npnan(self): # 5 is untouched in a single bin self.assertEqual(np.count_nonzero(result == 5.), 1) # all-nan and rest is np.nan - self.assertEqual(np.count_nonzero(np.isnan(result)), 2048*2560-2) + self.assertEqual(np.count_nonzero(np.isnan(result)), 2048 * 2560 - 2) self.assertEqual(np.nanmin(result), 2) def test_get_count(self):