From dfbff710fc82753335ae461eddd181682374ec63 Mon Sep 17 00:00:00 2001 From: Ronan Date: Thu, 18 Jul 2024 17:33:22 +0200 Subject: [PATCH] fix --- src/run.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/run.py b/src/run.py index 393ffee..e642b32 100644 --- a/src/run.py +++ b/src/run.py @@ -27,7 +27,6 @@ def main(args): # .env loading load_dotenv(".env") API_URL = os.environ.get("API_URL") - API_URL = "https://api.pyronear.org" LAT = float(os.environ.get("LAT")) LON = float(os.environ.get("LON")) assert isinstance(API_URL, str) and isinstance(LAT, float) and isinstance(LON, float)