(self, opt, point)
| 246 | self.point = _sum_up(points) |
| 247 | |
| 248 | def is_point(self, opt, point): |
| 249 | self.calculate_point() |
| 250 | compare_fmt = "{user_point} {opt} {point}".format( |
| 251 | user_point=self.point, opt=opt, point=point |
| 252 | ) |
| 253 | return eval(compare_fmt) |
| 254 | |
| 255 | def speak(self, content="", end_char="\n"): |
| 256 | print("") |
no test coverage detected