fix inconsistency

there was unlabelled extra column, better name for usage count

Signed-off-by: Mateusz Konieczny <matkoniecz@gmail.com>
This commit is contained in:
Mateusz Konieczny 2023-04-13 20:56:29 +02:00 committed by Alexander Borsuk
parent e610ff56c4
commit f17ec9d82c

View file

@ -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()