A list of the lines to be printed for this result's string representation.
(self, color_method=None)
| 63 | ) |
| 64 | |
| 65 | def str_lines(self, color_method=None): |
| 66 | """A list of the lines to be printed for this result's string |
| 67 | representation.""" |
| 68 | lines = [self.goal_function_result_str(color_method=color_method)] |
| 69 | lines.extend(self.diff_color(color_method)) |
| 70 | return lines |
| 71 | |
| 72 | def __str__(self, color_method=None): |
| 73 | return "\n\n".join(self.str_lines(color_method=color_method)) |
no test coverage detected