Skip to content

Commit 1b63d16

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

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
@@ -127,9 +127,9 @@ def inner(text):
127127
"""Format and pads inner text for the message box."""
128128

129129
return (
130-
f'*{" " * padding}'
131-
f'{text}{" " * (width - len(text) - padding * 2 - 2)}'
132-
f'{" " * padding}*'
130+
f"*{' ' * padding}"
131+
f"{text}{' ' * (width - len(text) - padding * 2 - 2)}"
132+
f"{' ' * padding}*"
133133
)
134134

135135
print_callable("=" * width)

0 commit comments

Comments
 (0)