Skip to content

Commit

Permalink
fix: Wrap Mii text to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpistilli committed Jul 5, 2024
1 parent 2fc025b commit 9351962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions url1/special/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def special_page_n(page):
RepeatedElement(
{
"inmsgseq": i + 1,
"inmsg": "\n".join(wrap(msg, 23)),
"inmsg": "\n".join(wrap(msg, 20)),
}
)
)
Expand All @@ -47,7 +47,7 @@ def special_page_n(page):
mii_msgs = []
for i, msg in enumerate(room_mii.mii_msg.split("\n")):
mii_msgs.append(
RepeatedElement({"msgseq": i + 1, "msg": "\n".join(wrap(msg, 23))})
RepeatedElement({"msgseq": i + 1, "msg": "\n".join(wrap(msg, 20))})
)

print(room_mii.seq)
Expand Down

0 comments on commit 9351962

Please sign in to comment.