fixed spacing bug with blank modules
This commit is contained in:
parent
a253f96259
commit
96e6cb2054
1 changed files with 1 additions and 1 deletions
2
main.py
2
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)
|
||||
|
|
Loading…
Reference in a new issue