There are several places in the code where a Context is constructed from datastore contents like this:
all_successors = [Context(args[0], db, args[1], parent=args[2])
for args in answer_successors + workspace_successors]
Replace these with something more readable.
This includes the args[0] in the procedure _can_advance_promise in context.py.