(string, args=(), kwargs={})
| 369 | |
| 370 | @staticmethod |
| 371 | def prepare_message(string, args=(), kwargs={}): # noqa: B006 |
| 372 | tokens = Colorizer._parse_with_formatting(string, args, kwargs) |
| 373 | return ColoredMessage(tokens) |
| 374 | |
| 375 | @staticmethod |
| 376 | def prepare_simple_message(string): |
no test coverage detected