(self)
| 117 | |
| 118 | |
| 119 | def write_formatted(self): |
| 120 | with open(self.filepath, "w") as outfile: |
| 121 | for comment in self.comments: |
| 122 | outfile.write(comment + "\n") |
| 123 | |
| 124 | self.write_as_categories(outfile) |
| 125 | |
| 126 | |
| 127 | if __name__ == "__main__": |
no test coverage detected