Skip to content

Commit

Permalink
fix(response): assert tags are exploded even if not present
Browse files Browse the repository at this point in the history
None-filled
  • Loading branch information
SlowMo24 committed Jun 27, 2024
1 parent 1d8f79c commit ef6c6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ohsome/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _as_geodataframe(
for feature in self.data["features"]:
properties = feature["properties"]
tags = {}
new_properties = {}
new_properties = {k: None for k in explode_tags}
for k in properties.keys():
if (
(k.startswith("@"))
Expand Down

0 comments on commit ef6c6c1

Please sign in to comment.