Skip to content

Commit

Permalink
remove lat, lon
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen committed Feb 7, 2025
1 parent 8ae55e8 commit bb7f581
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ def main(args):
# .env loading
load_dotenv(".env")
API_URL = os.environ.get("API_URL")
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)
assert isinstance(API_URL, str)
CAM_USER = os.environ.get("CAM_USER")
CAM_PWD = os.environ.get("CAM_PWD")
assert isinstance(CAM_USER, str) and isinstance(CAM_PWD, str)
Expand Down

0 comments on commit bb7f581

Please sign in to comment.