Prints text using colored format with trailing new line.
(text)
| 45 | |
| 46 | @staticmethod |
| 47 | def pl(text): |
| 48 | '''Prints text using colored format with trailing new line.''' |
| 49 | Color.p('%s\n' % text) |
| 50 | Color.last_sameline_length = 0 |
| 51 | |
| 52 | @staticmethod |
| 53 | def pe(text): |
no test coverage detected