Skip to content

Commit 03ee00a

Browse files
Syntax - Missing Comma
In names_and_emails list, the first one is missing a comma.
1 parent dc4c3a7 commit 03ee00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/automate-secret-santa-emails-with-smtp/secret_santa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def send_email(sender, receiver, recipient):
2222

2323
names_list = ['Sonny', 'Dharma', 'Malcolm', 'Jerry', 'Asiqur', 'Rose', 'Lillian']
2424
names_and_emails = [
25-
['Asiqur', '[email protected]']
25+
['Asiqur', '[email protected]'],
2626
['Dharma', '[email protected]'],
2727
['Jerry', '[email protected]'],
2828
['Lillian', '[email protected]'],

0 commit comments

Comments
 (0)