mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Replace dump('end') with traceback.print_stack() in Spinner.end()
This commit is contained in:
parent
44e05e82b0
commit
249c85e20f
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ import base64
|
||||||
import itertools
|
import itertools
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
|
import traceback
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
@ -40,7 +41,7 @@ class Spinner:
|
||||||
print(f" {self.text} {next(self.io.spinner_chars)}", end="\r", flush=True)
|
print(f" {self.text} {next(self.io.spinner_chars)}", end="\r", flush=True)
|
||||||
|
|
||||||
def end(self):
|
def end(self):
|
||||||
dump('end')
|
traceback.print_stack()
|
||||||
print(" " * (len(self.text) + 3))
|
print(" " * (len(self.text) + 3))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue