fix: properly comment out comment
a "#" somehow got accidentally remove which yielded syntax errors when executing the script.
This commit is contained in:
parent
1cc82092ef
commit
1ac6b7c940
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ def secret_santa_matching(participants: list) -> list:
|
|||
|
||||
|
||||
def send_secret_santa_mails(participants: list, config: dict):
|
||||
open smtp connection
|
||||
# open smtp connection
|
||||
server = smtplib.SMTP(config['server'], config['port'])
|
||||
server.ehlo()
|
||||
server.starttls()
|
||||
|
|
Loading…
Reference in a new issue