fix: properly comment out comment

a "#" somehow got accidentally remove which yielded syntax errors when executing the script.
This commit is contained in:
Stefan Sterz 2023-10-01 22:20:15 +02:00
parent 1cc82092ef
commit 1ac6b7c940
1 changed files with 1 additions and 1 deletions

View File

@ -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()