File size: 178 Bytes
58ac08a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import json

def parse_game_card(game_card_str):
    try:
        return json.loads(game_card_str)
    except json.JSONDecodeError:
        return {"description": game_card_str}