(self)
| 120 | sleep(10) |
| 121 | |
| 122 | def stop_bot(self): |
| 123 | for kickBot in self.kick_bots: |
| 124 | kickBot.stop() |
| 125 | for widget in self.winfo_children(): |
| 126 | widget.destroy() |
| 127 | self.master.destroy() |
| 128 | |
| 129 | root = Tk() |
| 130 | root.title("Kick View Bot") |
nothing calls this directly
no outgoing calls
no test coverage detected