From de5183f18871b2f6ad0050abf55d4acb768d4c29 Mon Sep 17 00:00:00 2001 From: "s.pati" Date: Wed, 17 Apr 2024 21:46:39 +0200 Subject: [PATCH] black --- tests/test_region_data.py | 5 +---- tests/test_region_list.py | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/test_region_data.py b/tests/test_region_data.py index f462378..fec0803 100644 --- a/tests/test_region_data.py +++ b/tests/test_region_data.py @@ -14,10 +14,7 @@ ) def test_get_region_data(api_key, region_code): """Check if region data is returned.""" - output = client.get_region_data( - api_key, - region_code=region_code - ) + output = client.get_region_data(api_key, region_code=region_code) assert len(output) > 0 diff --git a/tests/test_region_list.py b/tests/test_region_list.py index 30920f4..56e82c8 100644 --- a/tests/test_region_list.py +++ b/tests/test_region_list.py @@ -11,7 +11,6 @@ def test_get_region_list(api_key, spatial_resolution): assert output[0].get("resolution") == spatial_resolution - def test_save_regions(api_key): """Check if the results of get_regions() are saved properly.""" save_path = os.path.join(os.path.dirname(__file__))