(self, content="", end_char="\n")
| 253 | return eval(compare_fmt) |
| 254 | |
| 255 | def speak(self, content="", end_char="\n"): |
| 256 | print("") |
| 257 | print( |
| 258 | COLOR.get(self.color) + self.prompt + COLOR.get("END") + content, |
| 259 | end=end_char, |
| 260 | ) |
| 261 | |
| 262 | def showing(self): |
| 263 | self.speak() |
no test coverage detected