Output error message. .. seealso:: `put_info()`
(*contents: Any, closable: bool = False, scope: str = None,
position: int = OutputPosition.BOTTOM)
| 449 | |
| 450 | |
| 451 | def put_error(*contents: Any, closable: bool = False, scope: str = None, |
| 452 | position: int = OutputPosition.BOTTOM) -> Output: |
| 453 | """Output error message. |
| 454 | .. seealso:: `put_info()` |
| 455 | """ |
| 456 | return _put_message(color='danger', contents=contents, closable=closable, scope=scope, position=position) |
| 457 | |
| 458 | |
| 459 | # Due to the IPython rich output compatibility, |
no test coverage detected
searching dependent graphs…