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': C.ANSWER_1, 'calculation_2': C.ANSWER_2})