brainsqueeze's picture
UI callbacks and style changes
cc80c3d verified
raw
history blame contribute delete
203 Bytes
from typing import Literal, get_args
DataIndices = Literal[
"issuelab",
"youtube",
"candid_blog",
"candid_learning",
"candid_help",
"news"
]
ALL_INDICES = get_args(DataIndices)