(self, text, new_line=False)
| 60 | self.content += "{text}".format(text=text) |
| 61 | |
| 62 | def addLine(self, text, new_line=False): |
| 63 | self.content += "{line}{text}\n".format(line=('\n' if new_line else ''), |
| 64 | text=text) |
| 65 | |
| 66 | def addLinebreak(self): |
| 67 | self.content += "\n" |
no test coverage detected