(self, fig, outfile, dpi=None)
| 306 | return w, h |
| 307 | |
| 308 | def setup(self, fig, outfile, dpi=None): |
| 309 | # docstring inherited |
| 310 | super().setup(fig, outfile, dpi=dpi) |
| 311 | self._w, self._h = self._adjust_frame_size() |
| 312 | # Run here so that grab_frame() can write the data to a pipe. This |
| 313 | # eliminates the need for temp files. |
| 314 | self._run() |
| 315 | |
| 316 | def _run(self): |
| 317 | # Uses subprocess to call the program for assembling frames into a |
nothing calls this directly
no test coverage detected