Initialize NoConsoleScreenBufferError custom exception instance.
(self, msg: str = "")
| 183 | """Dummy exception to use when prompt_toolkit.output.win32.NoConsoleScreenBufferError is not available.""" |
| 184 | |
| 185 | def __init__(self, msg: str = "") -> None: |
| 186 | """Initialize NoConsoleScreenBufferError custom exception instance.""" |
| 187 | super().__init__(msg) |
| 188 | |
| 189 | |
| 190 | from .pt_utils import ( |