Files
arcaea-offline/src/arcaea_offline/utils/search_title.py
2023-08-28 20:28:40 +08:00

7 lines
164 B
Python

import json
from typing import List, Optional
def recover_search_title(db_value: Optional[str]) -> List[str]:
return json.loads(db_value) if db_value else []