You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a refinement of the work done in #176 because many checks can return several distinct feedback strings. We need separate templates for all of them, like this:
"feedback": {
"passed": {
"template": "Correct!",
"description": "correct"
},
"too_many": {
"template": "Your answer had [[actual]] vertices; more than the [[expected]] expected",
"fields": ["actual", "expected"],
"description": "too many vertices"
},
"too_few": {
"template": "Your answer had [[actual]] vertices; few than the [[expected]] expected",
"fields": ["actual", "expected"],
"description": "too few vertices"
}
}
We want to push a version to the production server, but since advanced
feedback is not in its final form yet (see #203) this commit disables
advanced feedback for the only check that had it (undirected: vertex
count).
We need a refinement of the work done in #176 because many checks can return several distinct feedback strings. We need separate templates for all of them, like this:
And then in the Python code for example:
The text was updated successfully, but these errors were encountered: