From 96e6cb2054882f08ccdf9c961c684f99b25641de Mon Sep 17 00:00:00 2001 From: Noah Swerhun Date: Sun, 12 Feb 2023 15:55:18 -0600 Subject: [PATCH] fixed spacing bug with blank modules --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5c1ae55..af5674b 100644 --- a/main.py +++ b/main.py @@ -17,7 +17,7 @@ def print_bar(): group = running_modules_dict[alignment] for index, module in enumerate(group): print(group[module], end="") - if index != (len(group) - 1): + if index != (len(group) - 1) and len(group[module]) > 0: print(seperator, end="") print(flush=True)