From f07f2ce32d92e5c91f385f2180e301fb023e35df Mon Sep 17 00:00:00 2001 From: Tomas Date: Thu, 9 Oct 2025 19:17:11 +0200 Subject: [PATCH] Removed underscore from VIDEO_FORMATS --- py34/url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py34/url.py b/py34/url.py index 2dbe42b..e3d93e7 100644 --- a/py34/url.py +++ b/py34/url.py @@ -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: