Make total delete videos in Total Stats be negative (#1175)

This commit is contained in:
marvin8 2025-02-17 13:49:05 +10:00 committed by GitHub
parent 35402438a5
commit 279ab4a566
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,7 +99,7 @@ def output_summary(subscriptions: List[Subscription]) -> None:
f"{total_subs_str:<{width_sub_name}} "
f"{_color_int(total_added):>{width_num_entries_added}} "
f"{_color_int(total_modified):>{width_num_entries_modified}} "
f"{_color_int(total_removed):>{width_num_entries_removed}} "
f"{_color_int(total_removed * -1):>{width_num_entries_removed}} "
f"{total_entries:>{width_num_entries}} "
f"{total_errors_str}"
)