From 8cfd64a7be22a0ba16f7031d532f1c1aba1f187a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 5 Dec 2024 14:45:47 -0800 Subject: [PATCH] chore: add comment for future spinner implementation --- aider/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aider/utils.py b/aider/utils.py index fea0eaaf0..0616b06d8 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -392,3 +392,5 @@ def printable_shell_command(cmd_list): return subprocess.list2cmdline(cmd_list) else: return shlex.join(cmd_list) + +# add main() that runs a spinner for 10 seconds in 1/4 sec steps AI!