(self, *, raise_exception=True)
| 214 | ) |
| 215 | |
| 216 | def is_valid(self, *, raise_exception=True): |
| 217 | super().is_valid(raise_exception=True) |
| 218 | self._check_unique_username_and_email() |
| 219 | |
| 220 | def _check_unique_username_and_email(self): |
| 221 | username = self.data.get('username') |
nothing calls this directly
no test coverage detected