diff options
author | 2022-11-17 00:48:07 -0500 | |
---|---|---|
committer | 2022-11-17 00:48:07 -0500 | |
commit | fed7d077c6347030a983f6d706186053f787ba72 (patch) | |
tree | 9b5cd5930c8b61b2b2c0cdfe807b7c37929af994 | |
parent | Refactored tests to use new kwargs (diff) |
Remove unused supported mimes
-rw-r--r-- | snekbox/snekio.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/snekbox/snekio.py b/snekbox/snekio.py index eac6438..fd0362d 100644 --- a/snekbox/snekio.py +++ b/snekbox/snekio.py @@ -6,11 +6,6 @@ from base64 import b64encode from dataclasses import dataclass from pathlib import Path -SUPPORTED_MIME_TYPES = { - "image/png", - "image/jpeg", -} - def sizeof_fmt(num: int, suffix: str = "B") -> str: """Return a human-readable file size.""" |