()
| 218 | |
| 219 | |
| 220 | def main(): |
| 221 | docs = { |
| 222 | entry.key: entry.doc |
| 223 | for entry in find_doc_entries() |
| 224 | if entry.raw_doc is not None and isinstance(entry.raw_doc, str) |
| 225 | } |
| 226 | dumped = json.dumps(docs, sort_keys=True, indent=4) |
| 227 | OUTPUT_FILE.write_text(dumped) |
| 228 | |
| 229 | |
| 230 | if __name__ == "__main__": |
no test coverage detected