(self, document)
| 1339 | idx += 1 |
| 1340 | |
| 1341 | def validate(self, document): |
| 1342 | if self.word_count != 24: |
| 1343 | error = f'Expected 24 passphrase words. Got {self.word_count}. Press Ctrl-C to cancel current input.' |
| 1344 | raise ValidationError(cursor_position=document.cursor_position, message=error) |
| 1345 | |
| 1346 | |
| 1347 | class InvalidDeviceToken(Exception): |
nothing calls this directly
no test coverage detected