sviddo commited on
Commit
f6fd98e
·
1 Parent(s): c69c12b

fix index out of range error

Browse files
Files changed (1) hide show
  1. scripts/quiz/generators.py +1 -1
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, 5))
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']