(self, dct: dict[str, Any])
| 210 | self.check_fn(_translate_language(dct[self.key])) |
| 211 | |
| 212 | def apply_default(self, dct: dict[str, Any]) -> None: |
| 213 | if self.key not in dct: |
| 214 | return |
| 215 | |
| 216 | dct[self.key] = _translate_language(dct[self.key]) |
| 217 | |
| 218 | def remove_default(self, dct: dict[str, Any]) -> None: |
| 219 | raise NotImplementedError |
nothing calls this directly
no test coverage detected