mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-01 04:06:27 +00:00
7 lines
164 B
Python
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 []
|