(content)
| 118 | |
| 119 | @staticmethod |
| 120 | def get_tips(content): |
| 121 | fmt_tips = "{color}** TIPS: {content}! **{end}" |
| 122 | return fmt_tips.format( |
| 123 | color=COLOR.get("YELLOW"), content=content, end=COLOR.get("END") |
| 124 | ) |
| 125 | |
| 126 | @property |
| 127 | def amount(self): |
no test coverage detected