Skip to content

Commit 10a4b31

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3164e40 commit 10a4b31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ def inner(text: str) -> str:
130130
"""Format and pads inner text for the message box."""
131131

132132
return (
133-
f'*{" " * padding}'
134-
f'{text}{" " * (width - len(text) - padding * 2 - 2)}'
135-
f'{" " * padding}*'
133+
f"*{' ' * padding}"
134+
f"{text}{' ' * (width - len(text) - padding * 2 - 2)}"
135+
f"{' ' * padding}*"
136136
)
137137

138138
print_callable("=" * width)

0 commit comments

Comments
 (0)