@@ -32,9 +32,16 @@ class Fore: # pylint: disable=too-few-public-methods
32
32
ColorMap = Dict [str , str ]
33
33
34
34
35
- def validate_pycrobit_str (pycrobit_string : str ) -> None :
35
+ def validate_pycrobit_str (pycrobit_string : str ) -> str :
36
36
"""Validate that the pycrobit string is correct."""
37
37
strip_line_feed = pycrobit_string .strip ("\n " )
38
+ if len (strip_line_feed ) == 25 :
39
+ result = ""
40
+ for i , char in enumerate (strip_line_feed ):
41
+ result += char
42
+ if i % 5 == 4 :
43
+ result += "\n "
44
+ return result
38
45
lines = strip_line_feed .split ("\n " )
39
46
assert len (lines ) == 5 , f"We expected 5 lines in the string and got { lines } "
40
47
for i , line in enumerate (lines ):
@@ -44,6 +51,7 @@ def validate_pycrobit_str(pycrobit_string: str) -> None:
44
51
f"We expected 5 characters on line n°{ i + 1 } and got "
45
52
f"{ len (stripped_line )} ({ stripped_line } )"
46
53
)
54
+ return pycrobit_string
47
55
48
56
49
57
def validate_color_map (color_map : ColorMap ) -> None :
@@ -61,9 +69,9 @@ def clear_terminal() -> None:
61
69
62
70
def colorize (pycrobit_string : str , color_map : ColorMap ) -> str :
63
71
"""Colorize a string to be displayed in terminal."""
64
- validate_pycrobit_str (pycrobit_string )
72
+ validated_str = validate_pycrobit_str (pycrobit_string )
65
73
validate_color_map (color_map )
66
- return "" .join (f"{ color_map .get (px , '' )} { px } { Fore .RESET } " for px in pycrobit_string )
74
+ return "" .join (f"{ color_map .get (px , '' )} { px } { Fore .RESET } " for px in validated_str )
67
75
68
76
69
77
class Pycrobit :
0 commit comments