(self)
| 99 | raise DecodingError(str(exc)) from exc |
| 100 | |
| 101 | def flush(self) -> bytes: |
| 102 | try: |
| 103 | return self.decompressor.flush() |
| 104 | except zlib.error as exc: # pragma: no cover |
| 105 | raise DecodingError(str(exc)) from exc |
| 106 | |
| 107 | |
| 108 | class BrotliDecoder(ContentDecoder): |