diff --git a/services/communication/guest-name-job.yaml b/services/communication/guest-name-job.yaml index 56df3f2..5e9a885 100644 --- a/services/communication/guest-name-job.yaml +++ b/services/communication/guest-name-job.yaml @@ -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)