(d: CallbackDict[str, str])
| 507 | """ |
| 508 | |
| 509 | def on_update(d: CallbackDict[str, str]) -> None: |
| 510 | self.headers["Content-Type"] = dump_options_header(self.mimetype, d) |
| 511 | |
| 512 | d = parse_options_header(self.headers.get("content-type", ""))[1] |
| 513 | return CallbackDict(d, on_update) |
nothing calls this directly
no test coverage detected