Source code for splendor.agents.generic.timeout

from splendor.template import Agent
import time


[docs] class myAgent(Agent): def __init__(self, _id): super().__init__(_id)
[docs] def SelectAction(self, actions, game_state, game_rule): time.sleep(2) return actions[0]