From da84c68e102b971b15d61757ccbda643ffb91665 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Tue, 26 Mar 2024 22:40:49 -0800 Subject: [PATCH] Linting --- tests/test_satimg.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_satimg.py b/tests/test_satimg.py index b57740ee..774b2e8f 100644 --- a/tests/test_satimg.py +++ b/tests/test_satimg.py @@ -118,7 +118,9 @@ def test_copy(self, example: str) -> None: assert isinstance(r2, gu.SatelliteImage) # Check all immutable attributes are equal - raster_attrs = [attr for attr in gu.raster.raster._default_rio_attrs if attr not in ["driver", "filename", "name"]] + raster_attrs = [ + attr for attr in gu.raster.raster._default_rio_attrs if attr not in ["driver", "filename", "name"] + ] satimg_attrs = ["satellite", "sensor", "product", "version", "tile_name", "datetime"] # Using list directly available in class attrs = raster_attrs + satimg_attrs