From 9b2c338f5e54b05c7c16ca0ad9f65faffc432db7 Mon Sep 17 00:00:00 2001 From: Famlam Date: Tue, 27 Jun 2023 23:37:55 +0200 Subject: [PATCH] Fix mapcss any(...) function call --- mapcss/mapcss2osmose.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mapcss/mapcss2osmose.py b/mapcss/mapcss2osmose.py index 2ff8b193e..ddc2c7727 100755 --- a/mapcss/mapcss2osmose.py +++ b/mapcss/mapcss2osmose.py @@ -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'] )