(data, builtin_docs, sploot_nodes)
| 137 | return nodes |
| 138 | |
| 139 | def processCategory(data, builtin_docs, sploot_nodes): |
| 140 | return { |
| 141 | 'category': data['category'], |
| 142 | 'entries': [processEntry(listing, builtin_docs, sploot_nodes) for listing in data.get('entries', [])] |
| 143 | } |
| 144 | |
| 145 | def generate_file(data, filename): |
| 146 | builtin_docs = generate_builtins_docs() |
no test coverage detected