Spaces:
Running
Running
File size: 263 Bytes
48ec4db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
async def get_group_title(id: int) -> str:
result = "LATER"
if id == 0:
result = "TODAY"
elif id == 1:
result = "LAST_WEEK"
elif id == 2:
result = "LAST_MONTH"
elif id == 3:
result = "LATER"
return result
|