Update helper.py
Browse files
helper.py
CHANGED
|
@@ -13,7 +13,7 @@ def get_questions():
|
|
| 13 |
#print("Question: " + row["Question"])
|
| 14 |
#print("file_name: " + row["file_name"])
|
| 15 |
#print("final_answer: " + row["Final answer"])
|
| 16 |
-
result
|
| 17 |
|
| 18 |
return result
|
| 19 |
|
|
|
|
| 13 |
#print("Question: " + row["Question"])
|
| 14 |
#print("file_name: " + row["file_name"])
|
| 15 |
#print("final_answer: " + row["Final answer"])
|
| 16 |
+
result.append([row["Level"], row["Question"], row["file_name"], row["Final answer"]])
|
| 17 |
|
| 18 |
return result
|
| 19 |
|