(self, string, fmt)
| 148 | return create_styler() |
| 149 | |
| 150 | def format(self, string, fmt): |
| 151 | # type: (str, str) -> str |
| 152 | for style in fmt.split("+"): |
| 153 | string = getattr(self, style)(string) |
| 154 | return string |
| 155 | |
| 156 | |
| 157 | class NoTheme(ColorTheme): |
no outgoing calls
no test coverage detected