From f9c0b9ae092e01ae5dca9adb43e720fc373c8bc2 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Sat, 13 Apr 2024 10:42:10 -0700 Subject: [PATCH] cleanup --- pub.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pub.py b/pub.py index 5ae27b5..4534b30 100755 --- a/pub.py +++ b/pub.py @@ -4,7 +4,6 @@ import argparse import hashlib import os import subprocess -import sys from functools import cache import boto3 @@ -20,6 +19,7 @@ cloudfront = session.client('cloudfront') TYPE_MAP = { + 'avif': 'image/avif', 'css': 'text/css', 'gif': 'image/gif', 'html': 'text/html; charset=utf8', @@ -28,7 +28,6 @@ TYPE_MAP = { 'json': 'application/json', 'png': 'image/png', 'webp': 'image/webp', - 'avif': 'image/avif', }