(self, _)
| 55 | self.pg.close() |
| 56 | |
| 57 | def completed_cb(self, _): |
| 58 | self.completed += 1 |
| 59 | self._update_progress() |
| 60 | |
| 61 | def submit(self, fn, *args, **kwargs) -> futures.Future: |
| 62 | future = self.executor.submit(fn, *args, **kwargs) |
nothing calls this directly
no test coverage detected