2
0
Fork 0

chore(notify): use CR to make stderr less noisy
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2024-05-13 22:59:57 +02:00
parent 661fd5d83b
commit e17645a8f3
1 changed files with 3 additions and 5 deletions

View File

@ -95,8 +95,6 @@ class Command(BaseCommand):
return
self.stderr.write()
all_messages = set(messages)
sent_messages = set()
error = None
@ -104,16 +102,16 @@ class Command(BaseCommand):
for message in send(all_messages):
sent_messages.add(message)
self.stderr.write()
self.stderr.write(
self.style.SUCCESS(
f"\r{str(len(sent_messages)).rjust(len(str(len(all_messages))))} / {len(all_messages)}"
),
ending="",
)
)
self.stderr.write()
except Exception as e:
error = e
self.stderr.write()
self.stderr.write(
self.style.WARNING(f"sent {len(sent_messages)} out of {len(all_messages)}")
)