Skip to content

Commit

Permalink
Fix mapcss any(...) function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Famlam authored and frodrigo committed Jun 30, 2023
1 parent bc7fb2b commit 9b2c338
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mapcss/mapcss2osmose.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ def functionExpression_runtime(t, c):
t['name'] = (
"keys.__contains__" if t['name'] == 'has_tag_key' else
"mapcss.list_" if t['name'] == 'list' else
"mapcss.any_" if t['name'] == 'any' else
"mapcss.round_" if t['name'] == 'round' else
"mapcss." + t['name']
)
Expand Down

0 comments on commit 9b2c338

Please sign in to comment.