From 9de1be675feb461e81d7d5aeb6fc4f05331875ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 2 Oct 2024 16:30:21 +0200 Subject: [PATCH] Fix mypy type --- tilecloud/store/azure_storage_blob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tilecloud/store/azure_storage_blob.py b/tilecloud/store/azure_storage_blob.py index 43e4054b4..2a43f6fd2 100644 --- a/tilecloud/store/azure_storage_blob.py +++ b/tilecloud/store/azure_storage_blob.py @@ -108,7 +108,7 @@ def put_one(self, tile: Tile) -> Tile: blob.upload_blob( tile.data, overwrite=True, - content_settings=ContentSettings( # type: ignore + content_settings=ContentSettings( content_type=tile.content_type, content_encoding=tile.content_encoding, cache_control=self.cache_control,