Output warning message. .. seealso:: `put_info()`
(*contents: Any, closable: bool = False, scope: str = None,
position: int = OutputPosition.BOTTOM)
| 441 | |
| 442 | |
| 443 | def put_warning(*contents: Any, closable: bool = False, scope: str = None, |
| 444 | position: int = OutputPosition.BOTTOM) -> Output: |
| 445 | """Output warning message. |
| 446 | .. seealso:: `put_info()` |
| 447 | """ |
| 448 | return _put_message(color='warning', contents=contents, closable=closable, scope=scope, position=position) |
| 449 | |
| 450 | |
| 451 | def put_error(*contents: Any, closable: bool = False, scope: str = None, |
no test coverage detected
searching dependent graphs…