(*args: Any, **kwargs: Any)
| 8 | |
| 9 | @wraps(_warn) |
| 10 | def warn(*args: Any, **kwargs: Any) -> Any: |
| 11 | # warn at call site outside of ReactPy |
| 12 | _warn(*args, stacklevel=_frame_depth_in_module() + 1, **kwargs) # type: ignore |
| 13 | |
| 14 | |
| 15 | if TYPE_CHECKING: |
no test coverage detected