MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / put_warning

Function put_warning

pywebio/output.py:443–448  ·  view source on GitHub ↗

Output warning message. .. seealso:: `put_info()`

(*contents: Any, closable: bool = False, scope: str = None,
                position: int = OutputPosition.BOTTOM)

Source from the content-addressed store, hash-verified

441
442
443def 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
451def put_error(*contents: Any, closable: bool = False, scope: str = None,

Callers 2

mainFunction · 0.85
output_widgetsFunction · 0.85

Calls 1

_put_messageFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…