Break up long line

This commit is contained in:
Johannes Altmanninger
2025-04-13 15:10:57 +02:00
parent 692599387b
commit ef25f1d27b
2 changed files with 12 additions and 2 deletions

View File

@@ -227,7 +227,11 @@ def parse_color(color_str):
comps = color_str.split(" ")
color = ""
background_color = ""
bold, underline, italics, dim, reverse = False, False, False, False, False
bold = False
underline = False
italics = False
dim = False
reverse = False
i = 0
while i < len(comps):
comp = comps[i]