From 6877cca21b4983142c04564888e759b096e0bded Mon Sep 17 00:00:00 2001 From: Leon Bohmann Date: Tue, 30 Nov 2021 22:15:55 +0100 Subject: [PATCH] small design update to loader --- zspotify/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zspotify/utils.py b/zspotify/utils.py index 20d6d45..bc1f279 100644 --- a/zspotify/utils.py +++ b/zspotify/utils.py @@ -333,7 +333,7 @@ class Loader: for c in cycle(self.steps): if self.done: break - print(f"\r\t☐ {c} {self.desc} ", flush=True, end="") + print(f"\r\t{c} {self.desc} ", flush=True, end="") sleep(self.timeout) def __enter__(self):