Fausto Busuito
commited on
Commit
·
8207cb8
1
Parent(s):
9a82c5c
Application changes
Browse files- app.py +1 -0
- requirements.txt +1 -1
app.py
CHANGED
@@ -38,6 +38,7 @@ def results():
|
|
38 |
return render_template('results.html', score=score, questions=questions, answers=answers)
|
39 |
|
40 |
def load_questions(file):
|
|
|
41 |
questions = json.load(file)
|
42 |
random.shuffle(questions)
|
43 |
return questions
|
|
|
38 |
return render_template('results.html', score=score, questions=questions, answers=answers)
|
39 |
|
40 |
def load_questions(file):
|
41 |
+
print(">>>>>>>>>>>>>>>>>>>>>>>>>>" + str(file))
|
42 |
questions = json.load(file)
|
43 |
random.shuffle(questions)
|
44 |
return questions
|
requirements.txt
CHANGED
@@ -1 +1 @@
|
|
1 |
-
Flask==2.0
|
|
|
1 |
+
Flask==2.1.0
|