Skip to content
Snippets Groups Projects
Commit 5f3403f9 authored by Julian's avatar Julian
Browse files

Rewrite parse_icon_names to use new iconset

parent ce6db220
No related branches found
No related tags found
1 merge request!6Add ckeditor in FAQ questions admin interface
import json
def parse_icon_names():
icons = []
with open('icons_meta.json') as json_file:
data = json.load(json_file)
for obj in data:
name = obj["name"]
icons.append((name, name))
return icons
if __name__ == "__main__":
print(parse_icon_names())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment