From 9e426906e1edb35540aa5d01eac5758c5ef34109 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Thu, 17 Apr 2025 16:20:42 +0200 Subject: [PATCH] gh-132635: `mimetypes`: fix duplicate entry for bmp --- Lib/mimetypes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 9b42bf6dd2ca74..f27bc934367e07 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -500,7 +500,6 @@ def _default_mime_types(): '.tif' : 'image/tiff', '.ico' : 'image/vnd.microsoft.icon', '.ras' : 'image/x-cmu-raster', - '.bmp' : 'image/x-ms-bmp', '.pnm' : 'image/x-portable-anymap', '.pbm' : 'image/x-portable-bitmap', '.pgm' : 'image/x-portable-graymap',