(func, tmppath, *args, **kwargs)
| 1284 | |
| 1285 | |
| 1286 | def _try_distill(func, tmppath, *args, **kwargs): |
| 1287 | try: |
| 1288 | func(str(tmppath), *args, **kwargs) |
| 1289 | except mpl.ExecutableNotFoundError as exc: |
| 1290 | _log.warning("%s. Distillation step skipped.", exc) |
| 1291 | |
| 1292 | |
| 1293 | def gs_distill(tmpfile, eps=False, ptype='letter', bbox=None, rotated=False): |
no test coverage detected
searching dependent graphs…