From 7edba24b516c16b163c7073fbd8935187c932520 Mon Sep 17 00:00:00 2001 From: Nikolaj Gade Date: Thu, 29 Aug 2024 10:36:00 +0200 Subject: [PATCH] :memo: Commenting imports --- main.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 4e0d9ec..9654f35 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,7 @@ -from configparser import ConfigParser -from shutil import copy -from requests import request +from configparser import ConfigParser # For reading the config.ini file +from shutil import copy # For creating a new config.ini file +from requests import request # For using the Trello API +import smtplib, ssl # For sending emails ### Constants @@ -153,8 +154,8 @@ def send_emails(config: dict, users: dict, timestamp: str) -> None: PARAMETERS ---------- - config: dict - The config file data. Uses this for the SMTP server, username and - password. + The config file data. Uses this for the SMTP server, port, username, + and password. - users: dict Each user ID and the email connected to it.