Skip to content

Commit

Permalink
fix: use square brackets with os.environ
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Dec 3, 2024
1 parent f287b3a commit 020178d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapswipe_workers/mapswipe_workers/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
OSMCHA_API_LINK = "https://osmcha.org/api/v1/"
OSMCHA_API_KEY = os.environ["OSMCHA_API_KEY"]
MAPILLARY_API_LINK = "https://tiles.mapillary.com/maps/vtp/mly1_computed_public/2/"
MAPILLARY_API_KEY = os.environ("MAPILLARY_API_KEY")
MAPILLARY_API_KEY = os.environ["MAPILLARY_API_KEY"]

# number of geometries for project geometries
MAX_INPUT_GEOMETRIES = 10
Expand Down

0 comments on commit 020178d

Please sign in to comment.