<<<<<<< HEAD from otree.api import Currency as c, currency_range, expect ======= from otree.api import Currency as c, currency_range >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 from . import pages from ._builtin import Bot from .models import Constants <<<<<<< HEAD class PlayerBot(Bot): def play_round(self): yield pages.Introduction if self.player.id_in_group == 1: yield pages.Send, dict(sent_amount=4) else: yield pages.SendBack, dict(sent_back_amount=8) yield pages.Results ======= class PlayerBot(Bot): def play_round(self): yield (pages.Introduction) if self.player.id_in_group == 1: yield (pages.Send, {"sent_amount": 4}) else: yield (pages.SendBack, {'sent_back_amount': 8}) yield (pages.Results) >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3