Skip to content

Commit da6d0c7

Browse files
committed
widget catalog: ignore _keywords keyword
1 parent 8b8d08f commit da6d0c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/create_widget_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def create(self):
5454
"doc": doc,
5555
"icon": icon,
5656
"background": category.background,
57-
"keywords": widget.keywords,
57+
"keywords": [k for k in widget.keywords if k != "_keywords"],
5858
})
5959

6060
with open(path.join(self.output_dir, "widgets.json"), 'wt') as f:

0 commit comments

Comments
 (0)