MCPcopy
hub / github.com/Aider-AI/aider / _stop_waiting_spinner

Method _stop_waiting_spinner

aider/coders/base_coder.py:589–596  ·  view source on GitHub ↗

Stop and clear the waiting spinner if it is running.

(self)

Source from the content-addressed store, hash-verified

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):

Callers 3

send_messageMethod · 0.95
show_send_outputMethod · 0.95

Calls 1

stopMethod · 0.45

Tested by

no test coverage detected