DanielHabib / terminal-based-comp-sci-quiz

Terminal Based Computer Science assessment
28 stars 9 forks source link

Unclosed brace? #19

Closed BorisPolonsky closed 7 years ago

BorisPolonsky commented 7 years ago

I cloned the project and found that the project didn't worked in the beginning. That's why I found out that a brace was left unclosed in the following section in prompts.py:

{
        "id": 63,
        "type": Type.QUESTION,
        "title": "Closure Intuition Intuition",
        "topic": [Topic.PYTHON],
        "prompt": "What is a closure?",
        "answer": """
            Closure is just a fancy name for a function that remembers the values from the enclosing lexical scope even when the program flow is no longer in the enclosing scope.
        """,

Nice work, BTW, I like it.))

DanielHabib commented 7 years ago

Thanks! I'll clean that up right away!

DanielHabib commented 7 years ago

Should be good to go