From 390ef12754f1f66b4982ba3dfdd54e91f169e0de Mon Sep 17 00:00:00 2001 From: Matt Black Date: Wed, 19 Jul 2023 08:31:50 -0400 Subject: [PATCH] Added comment to main.py Added comment to explain what load_dotenv() does. --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 370e050..98b0f20 100644 --- a/main.py +++ b/main.py @@ -9,6 +9,7 @@ from dotenv import load_dotenv from urllib.parse import urlencode +# load the .env file, which stores the API key value load_dotenv() # Replace this value with your own API key from openweathermap.com.