(text: str, formatting: str)
| 22 | |
| 23 | |
| 24 | def with_formatting(text: str, formatting: str) -> str: |
| 25 | return with_formattings(text, [formatting]) |
| 26 | |
| 27 | |
| 28 | def with_conditional_formatting(text: str, formatting: str, condition: bool) -> str: |
no test coverage detected