diff --git a/mongodb/source/autograder.py b/mongodb/source/autograder.py index a1836b9..929b108 100644 --- a/mongodb/source/autograder.py +++ b/mongodb/source/autograder.py @@ -88,6 +88,7 @@ def evaluate(query : str): if query.endswith(';'): query = query[:-1] true = True + false = False data = list(eval(query)) return [postproc_iter(data, n) if query else None for n in (True, False)]