import random from . import pages from ._builtin import Bot from .models import Constants class PlayerBot(Bot): def play_round(self): yield (pages.UnderstandingQuestions, { 'understanding_questions_wrong_attempts': random.randint(0, 10), }) yield (pages.CalculationPage, {'calculation_1': Constants.answer_1, 'calculation_2': Constants.answer_2})