Removed underscore from VIDEO_FORMATS

This commit is contained in:
2025-10-09 19:17:11 +02:00
parent bc28807aeb
commit f07f2ce32d

View File

@ -3,7 +3,7 @@ from os.path import splitext
IMAGE_FORMATS = ["jpeg", "jpg", "png", "gif", "mp4", "webm"]
_VIDEO_FORMATS = ["mp4", "webm"]
VIDEO_FORMATS = ["mp4", "webm"]
class ViewURL: