(pool: list[str], rng: random.Random)
| 61 | |
| 62 | |
| 63 | def _pick(pool: list[str], rng: random.Random) -> str: |
| 64 | return rng.choice(pool) |
| 65 | |
| 66 | |
| 67 | # --- command templates ------------------------------------------------------ |
no outgoing calls
no test coverage detected