Prints string in bold yellow. Parameters: string (str): String to print in bold yellow.
(string: str)
| 274 | |
| 275 | |
| 276 | def yellow(string: str) -> None: |
| 277 | """ |
| 278 | Prints string in bold yellow. |
| 279 | |
| 280 | Parameters: |
| 281 | string (str): String to print in bold yellow. |
| 282 | """ |
| 283 | print(f"\n\033[01;33m{string}\033[0m", flush=True) |
nothing calls this directly
no outgoing calls
no test coverage detected