bstraehle commited on
Commit
0fccc5c
·
verified ·
1 Parent(s): 4cd6fae

Update helper.py

Browse files
Files changed (1) hide show
  1. helper.py +1 -1
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 = result + [row["Level"], row["Question"], row["file_name"], row["Final answer"]]
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