Skip to content

Commit

Permalink
Fix mypy type
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 2, 2024
1 parent f002ea4 commit 9de1be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tilecloud/store/azure_storage_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9de1be6

Please sign in to comment.