This commit is contained in:
Will McGugan
2023-02-07 16:01:24 +00:00
parent 6d722fd291
commit 484676c092

View File

@@ -19,10 +19,8 @@ OUTER = 2
BORDER_CHARS: dict[
EdgeType, tuple[tuple[str, str, str], tuple[str, str, str], tuple[str, str, str]]
] = {
# Each string of the tuple represents a sub-tuple itself:
# - 1st string represents (top1, top2, top3)
# - 2nd string represents (mid1, mid2, mid3)
# - 3rd string represents (bottom1, bottom2, bottom3)
# Three tuples for the top, middle, and bottom rows.
# The sub-tuples are the characters for the left, center, and right borders.
"": ((" ", " ", " "), (" ", " ", " "), (" ", " ", " ")),
"ascii": (("+", "-", "+"), ("|", " ", "|"), ("+", "-", "+")),
"none": ((" ", " ", " "), (" ", " ", " "), (" ", " ", " ")),