From 03ee00a106b5d3b862bbc97775eaeef43c33b563 Mon Sep 17 00:00:00 2001 From: DaPanda <156377255+DaPandamonium@users.noreply.github.com> Date: Mon, 21 Oct 2024 20:06:57 +0300 Subject: [PATCH] Syntax - Missing Comma In names_and_emails list, the first one is missing a comma. --- projects/automate-secret-santa-emails-with-smtp/secret_santa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/automate-secret-santa-emails-with-smtp/secret_santa.py b/projects/automate-secret-santa-emails-with-smtp/secret_santa.py index 6999b270..0ec555ae 100644 --- a/projects/automate-secret-santa-emails-with-smtp/secret_santa.py +++ b/projects/automate-secret-santa-emails-with-smtp/secret_santa.py @@ -22,7 +22,7 @@ def send_email(sender, receiver, recipient): names_list = ['Sonny', 'Dharma', 'Malcolm', 'Jerry', 'Asiqur', 'Rose', 'Lillian'] names_and_emails = [ - ['Asiqur', 'asiqur@codedex.io'] + ['Asiqur', 'asiqur@codedex.io'], ['Dharma', 'dharma@codedex.io'], ['Jerry', 'jerry@codedex.io'], ['Lillian', 'lillian@codedex.io'],