(self, options: dict[str, Any], dont_fail: bool = False)
| 343 | """ |
| 344 | |
| 345 | def _configure(self, options: dict[str, Any], dont_fail: bool = False) -> None: |
| 346 | super()._configure(options, dont_fail) |
| 347 | if not self.encoding: |
| 348 | self.encoding = "utf-8" |
| 349 | |
| 350 | def serialize_field( |
| 351 | self, field: Mapping[str, Any] | Field, name: str, value: Any |
nothing calls this directly
no test coverage detected