📝 Commenting imports

This commit is contained in:
2024-08-29 10:36:00 +02:00
parent 37702b7380
commit 7edba24b51

11
main.py
View File

@ -1,6 +1,7 @@
from configparser import ConfigParser from configparser import ConfigParser # For reading the config.ini file
from shutil import copy from shutil import copy # For creating a new config.ini file
from requests import request from requests import request # For using the Trello API
import smtplib, ssl # For sending emails
### Constants ### Constants
@ -153,8 +154,8 @@ def send_emails(config: dict, users: dict, timestamp: str) -> None:
PARAMETERS PARAMETERS
---------- ----------
- config: dict - config: dict
The config file data. Uses this for the SMTP server, username and The config file data. Uses this for the SMTP server, port, username,
password. and password.
- users: dict - users: dict
Each user ID and the email connected to it. Each user ID and the email connected to it.