(id, source_types, target_types, requirements)
| 708 | |
| 709 | |
| 710 | def register_archiver(id, source_types, target_types, requirements): |
| 711 | g = ArchiveGenerator(id, True, source_types, target_types, requirements) |
| 712 | generators.register(g) |
| 713 | |
| 714 | class DummyGenerator(generators.Generator): |
| 715 | """Generator that accepts everything and produces nothing. Useful as a general |
nothing calls this directly
no test coverage detected