Remove negation

This commit is contained in:
Tat Dat Duong
2025-04-16 23:28:07 +02:00
parent 9b87b45322
commit 43af618bb5
+1 -1
View File
@@ -44,7 +44,7 @@ class Progress:
sys.stdout.flush()
def __enter__(self) -> Callable[[str], None]:
if not sys.stdout.isatty():
if sys.stdout.isatty():
self.thread = threading.Thread(target=self.spinner_task)
self.thread.start()