fix: fix key

This commit is contained in:
moanos [he/him] 2025-01-26 17:04:56 +01:00
parent 461abd2e46
commit 70e2af6172

View File

@ -16,7 +16,7 @@ def load_osm_data(file_path):
def transform_osm_data(feature):
#Transform a single OSM feature into the API payload format
prop = feature.get("prop", {})
prop = feature.get("properties", {})
geometry = feature.get("geometry", {})
return {