Skip to content

Commit 7410168

Browse files
Handle string that are 25 caracters exactly
1 parent 5693674 commit 7410168

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ while True:
5050
pycrobit.display(all_off)
5151
pycrobit.display("*.*.*\n" * 5)
5252
pycrobit.wait(-0.25)
53-
pycrobit.display("\n".join(".***." * 5))
53+
pycrobit.display(".***." * 5)
5454
pycrobit.wait(-0.25)
5555
```

pycrobit.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,16 @@ class Fore: # pylint: disable=too-few-public-methods
3232
ColorMap = Dict[str, str]
3333

3434

35-
def validate_pycrobit_str(pycrobit_string: str) -> None:
35+
def validate_pycrobit_str(pycrobit_string: str) -> str:
3636
"""Validate that the pycrobit string is correct."""
3737
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
3845
lines = strip_line_feed.split("\n")
3946
assert len(lines) == 5, f"We expected 5 lines in the string and got {lines} "
4047
for i, line in enumerate(lines):
@@ -44,6 +51,7 @@ def validate_pycrobit_str(pycrobit_string: str) -> None:
4451
f"We expected 5 characters on line n°{i+1} and got "
4552
f"{len(stripped_line)} ({stripped_line})"
4653
)
54+
return pycrobit_string
4755

4856

4957
def validate_color_map(color_map: ColorMap) -> None:
@@ -61,9 +69,9 @@ def clear_terminal() -> None:
6169

6270
def colorize(pycrobit_string: str, color_map: ColorMap) -> str:
6371
"""Colorize a string to be displayed in terminal."""
64-
validate_pycrobit_str(pycrobit_string)
72+
validated_str = validate_pycrobit_str(pycrobit_string)
6573
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)
6775

6876

6977
class Pycrobit:

0 commit comments

Comments
 (0)