(self)
| 935 | self.title = sanitize_str_field_value(data.get('title')).strip() |
| 936 | |
| 937 | def enumerate_fields(self): # type: () -> Iterable[Tuple[str, Union[None, str, List[str]]]] |
| 938 | for pair in super(ApplicationRecord, self).enumerate_fields(): |
| 939 | yield pair |
| 940 | yield '(type)', self.get_record_type() |
nothing calls this directly
no test coverage detected