(self, *args, **kwargs)
| 86 | focusOut = Signal() |
| 87 | |
| 88 | def __init__(self, *args, **kwargs): |
| 89 | super().__init__(*args, **kwargs) |
| 90 | self._valid = True |
| 91 | self._style_sheet_valid = "" # By default, clear the style sheet |
| 92 | self._style_sheet_invalid = "color: rgb(255, 0, 0);" |
| 93 | self._update_valid_status() |
| 94 | |
| 95 | def _update_valid_status(self): |
| 96 | if self._valid: |
nothing calls this directly
no test coverage detected