(self)
| 39 | self.start() |
| 40 | |
| 41 | def exit(self): |
| 42 | self.was_killed.set() |
| 43 | if self is not current_thread(): |
| 44 | self.join() |
| 45 | return self.report() |
| 46 | |
| 47 | def get_instances(self): |
| 48 | # returns a copy of started `tqdm_cls` instances |
no test coverage detected