(self)
| 203 | self.current_frame = io.BytesIO() |
| 204 | |
| 205 | def end_framing(self): |
| 206 | if self.current_frame and self.current_frame.tell() > 0: |
| 207 | self.commit_frame(force=True) |
| 208 | self.current_frame = None |
| 209 | |
| 210 | def commit_frame(self, force=False): |
| 211 | if self.current_frame: |
no test coverage detected