Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Mar 27, 2024
1 parent e29ee35 commit da84c68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_satimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit da84c68

Please sign in to comment.