Stop and clear the waiting spinner if it is running.
(self)
| 587 | return True |
| 588 | |
| 589 | def _stop_waiting_spinner(self): |
| 590 | """Stop and clear the waiting spinner if it is running.""" |
| 591 | spinner = getattr(self, "waiting_spinner", None) |
| 592 | if spinner: |
| 593 | try: |
| 594 | spinner.stop() |
| 595 | finally: |
| 596 | self.waiting_spinner = None |
| 597 | |
| 598 | def get_abs_fnames_content(self): |
| 599 | for fname in list(self.abs_fnames): |
no test coverage detected