comms: fix guest randomizer syntax
This commit is contained in:
parent
47f0ff7c01
commit
ca49c84086
@ -170,7 +170,7 @@ spec:
|
|||||||
for g in guests:
|
for g in guests:
|
||||||
new = None
|
new = None
|
||||||
for _ in range(30):
|
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:
|
if candidate not in existing:
|
||||||
new = candidate
|
new = candidate
|
||||||
existing.add(candidate)
|
existing.add(candidate)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user