From f17ec9d82cc1631fa52cdab8cf67c2c485949620 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Thu, 13 Apr 2023 20:56:29 +0200 Subject: [PATCH] fix inconsistency there was unlabelled extra column, better name for usage count Signed-off-by: Mateusz Konieczny --- 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 3f8a2191cc..47d406c8ae 100755 --- a/tools/python/stylesheet/cat_stat.py +++ b/tools/python/stylesheet/cat_stat.py @@ -161,7 +161,7 @@ if __name__ == '__main__': # Iterate over know classificator types w = csv.writer(sys.stdout) - w.writerow(('type', 'is editable', 'can add', 'drawn', 'icon', 'area', 'name drawn', 'usages in osm')) + w.writerow(('type', 'is editable', 'can add', 'drawn', 'icon', 'area', 'name drawn', 'usage count in osm', 'source')) no_editor = EditStat() no_drawn = DruleStat() seen = set()