add to each item to pending queue in loop

This commit is contained in:
Simon
2025-07-11 22:47:28 +07:00
parent 5504c333b8
commit 27bb5ff298
5 changed files with 21 additions and 15 deletions

View File

@@ -11,6 +11,9 @@ class VideoTypeEnum(enum.Enum):
SHORTS = "shorts"
UNKNOWN = "unknown"
def __str__(self):
return self.value
@classmethod
def values(cls) -> list[str]:
"""value list"""