From 238e38496abc5d24775fb5ee51e33774bc1c9afc Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Wed, 5 Apr 2023 09:48:49 +0200 Subject: [PATCH] [doc] fix comment - key are limited to set of known ones Signed-off-by: Mateusz Konieczny Small step toward #4895 --- tools/python/stylesheet/cat_stat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/stylesheet/cat_stat.py b/tools/python/stylesheet/cat_stat.py index ba693b1774..b405d54c1d 100755 --- a/tools/python/stylesheet/cat_stat.py +++ b/tools/python/stylesheet/cat_stat.py @@ -81,7 +81,7 @@ def find_in_taginfo(cur, kv, seen): def find_popular_taginfo(cur, seen): - """Finds popular keys that have not been seen.""" + """Finds popular values that have not been seen, among some popular tags.""" RE_VALID = re.compile(r'^[a-z_]+$') keys = ('amenity', 'shop', 'craft', 'emergency', 'office', 'highway', 'railway', 'tourism', 'historic', 'leisure', 'man_made') cur.execute("select key, value, count_all from tags where key in ({}) and count_all > 1000 order by count_all desc".