(data, filename)
| 143 | } |
| 144 | |
| 145 | def generate_file(data, filename): |
| 146 | builtin_docs = generate_builtins_docs() |
| 147 | sploot_nodes = generate_sploot_node_docs() |
| 148 | |
| 149 | result = {} |
| 150 | result = processCategory(data, builtin_docs, sploot_nodes) |
| 151 | |
| 152 | with open(filename, 'w') as f: |
| 153 | json.dump(result, f) |
| 154 | |
| 155 | |
| 156 | if __name__ == '__main__': |
no test coverage detected