Pick one of the bot templates uniformly at random and generate a cmd.
(rng: random.Random)
| 148 | |
| 149 | |
| 150 | def gen_bot_cmd(rng: random.Random) -> str: |
| 151 | """Pick one of the bot templates uniformly at random and generate a cmd.""" |
| 152 | return rng.choice(BOT_TEMPLATES)(rng) |
| 153 | |
| 154 | |
| 155 | SIMPLE_CMDS = [ |
no outgoing calls
no test coverage detected