diff --git a/earthspy/earthspy.py b/earthspy/earthspy.py index 82a792f..8679d65 100644 --- a/earthspy/earthspy.py +++ b/earthspy/earthspy.py @@ -202,7 +202,8 @@ def get_raster_compression(self, raster_compression: Union[None, str]) -> str: :return: Compression mode """ - if raster_compression in ['DEFLATE','LZW','PACKBITS','JPEG', 'WEBP','LZMA','ZSTD']: + if raster_compression in ['DEFLATE','LZW','PACKBITS','JPEG', + 'WEBP','LZMA','ZSTD']: self.raster_compression = raster_compression elif raster_compression == None: self.raster_compression = None