(self, root)
| 92 | return re.sub(r"[^A-Za-z0-9\.]", '_', path) |
| 93 | |
| 94 | def write_text(self, root): |
| 95 | for path, source in self.files.items(): |
| 96 | with open(os.path.join(root, self.clean_path(path)), "w") as fd: |
| 97 | source.write_text(fd) |
| 98 | |
| 99 | def write_html(self, root): |
| 100 | for path, source in self.files.items(): |
nothing calls this directly
no test coverage detected