(self)
| 59 | print("\r" + " " * (len(self.message) + 10) + "\r", end="", flush=True) |
| 60 | |
| 61 | def _spin(self): |
| 62 | chars = "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏" |
| 63 | i = 0 |
| 64 | while self.spinning: |
| 65 | print(f"\r{self.message} {chars[i % len(chars)]}", end="", flush=True) |
| 66 | i += 1 |
| 67 | time.sleep(0.1) |
| 68 | |
| 69 | |
| 70 | def conversation_loop(): |
nothing calls this directly
no outgoing calls
no test coverage detected