(module)
| 57 | |
| 58 | |
| 59 | def update_translation_snapshots(module): |
| 60 | contents = _generate_po_file(module.__file__) |
| 61 | msgids = _extract_msgids(contents) |
| 62 | snapshot_path = _get_snapshot_path(module.__name__) |
| 63 | snapshot_path.write_text('\n'.join(msgids)) |
no test coverage detected