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