def convert_from_response()

in code/backend/app.py [0:0]


def convert_from_response(item):
    todo = {
        'id': int(item['TodoId']),
        'title': item['title'],
        'done': item['done']
    }
    return todo