File size: 203 Bytes
cc80c3d
a0e37e2
cc80c3d
a0e37e2
 
 
 
bea5044
 
cc80c3d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from typing import Literal, get_args

DataIndices = Literal[
    "issuelab",
    "youtube",
    "candid_blog",
    "candid_learning",
    "candid_help",
    "news"
]

ALL_INDICES = get_args(DataIndices)