fix: Remove unused spinner method from InputOutput class

This commit is contained in:
Paul Gauthier 2024-08-05 19:31:54 -03:00 committed by Paul Gauthier (aider)
parent f8d161382e
commit c67d10749c
3 changed files with 30 additions and 6 deletions

View file

@ -414,8 +414,3 @@ class InputOutput:
if self.chat_history_file is not None:
with self.chat_history_file.open("a", encoding=self.encoding) as f:
f.write(text)
def spinner(self, text):
from aider.utils import Spinner
return Spinner(text)