From eccad8968bd120a02f934fa90656d3d322ab34b9 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 4 Jan 2023 11:53:46 +0700 Subject: [PATCH] add unknown field to VideoTypeEnum --- tubearchivist/home/src/index/video_constants.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tubearchivist/home/src/index/video_constants.py b/tubearchivist/home/src/index/video_constants.py index d5df23a..1b8dcd4 100644 --- a/tubearchivist/home/src/index/video_constants.py +++ b/tubearchivist/home/src/index/video_constants.py @@ -1,7 +1,12 @@ +"""video constants""" + import enum class VideoTypeEnum(enum.Enum): + """all vid_type fields""" + VIDEO = "video" LIVE = "live" SHORT = "short" + UNKNOWN = "unknown"