(self, title)
| 222 | self._writes = [] |
| 223 | |
| 224 | def add_title_section(self, title): |
| 225 | title_section = self.add_new_section('title') |
| 226 | title_section.style.h1(title) |
| 227 | return title_section |
| 228 | |
| 229 | def write_to_file(self, full_path, file_name): |
| 230 | if not os.path.exists(full_path): |
no test coverage detected