Prints string in bold green. Parameters: string (str): String to print in bold green.
(string: str)
| 171 | |
| 172 | |
| 173 | def green(string: str) -> None: |
| 174 | """ |
| 175 | Prints string in bold green. |
| 176 | |
| 177 | Parameters: |
| 178 | string (str): String to print in bold green. |
| 179 | """ |
| 180 | print(f"\n\033[01;32m{string}\033[0m", flush=True) |
| 181 | |
| 182 | |
| 183 | def prepare_initrd( |
nothing calls this directly
no outgoing calls
no test coverage detected