Spaces:
Runtime error
Runtime error
fix index out of range error
Browse files
scripts/quiz/generators.py
CHANGED
@@ -6,7 +6,7 @@ from .utils import get_next_difficulty, generate_start_step
|
|
6 |
def start_interactive_math(difficulty=0.01, do_increase: True | False = True):
|
7 |
next_difficulty = get_next_difficulty(difficulty, do_increase)
|
8 |
start, step = generate_start_step(difficulty)
|
9 |
-
question_data = generate_question_data(start, step, question_num=random.randint(0,
|
10 |
|
11 |
question = question_data['question']
|
12 |
start = question_data['start']
|
|
|
6 |
def start_interactive_math(difficulty=0.01, do_increase: True | False = True):
|
7 |
next_difficulty = get_next_difficulty(difficulty, do_increase)
|
8 |
start, step = generate_start_step(difficulty)
|
9 |
+
question_data = generate_question_data(start, step, question_num=random.randint(0, 4))
|
10 |
|
11 |
question = question_data['question']
|
12 |
start = question_data['start']
|