24 lines
577 B
Python
24 lines
577 B
Python
from otree.api import Currency as c, currency_range, Submission
|
|
from . import pages
|
|
from ._builtin import Bot
|
|
from .models import Constants
|
|
import random
|
|
|
|
|
|
# **********************************************************************************************************************
|
|
# *** BOT
|
|
# **********************************************************************************************************************
|
|
class PlayerBot(Bot):
|
|
def play_round(self):
|
|
|
|
yield Submission(
|
|
pages.Pass,
|
|
check_html=False
|
|
)
|
|
|
|
yield (pages.Fin)
|
|
|
|
|
|
|
|
|