comms: fix guest randomizer syntax

This commit is contained in:
Brad Stein 2026-01-08 00:15:41 -03:00
parent 47f0ff7c01
commit ca49c84086

View File

@ -170,7 +170,7 @@ spec:
for g in guests:
new = None
for _ in range(30):
candidate = f\"{random.choice(ADJ)}-{random.choice(NOUN)}\"
candidate = f"{random.choice(ADJ)}-{random.choice(NOUN)}"
if candidate not in existing:
new = candidate
existing.add(candidate)