(self, text: str, parent=None)
| 97 | """警告信息框组件""" |
| 98 | |
| 99 | def __init__(self, text: str, parent=None): |
| 100 | super().__init__(parent) |
| 101 | self._setup_frame(text) |
| 102 | |
| 103 | def _setup_frame(self, text: str): |
| 104 | """设置警告框""" |
nothing calls this directly
no test coverage detected