From 10a4b317ef35f76a86f115abb9e5ae3e292e08be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 00:07:06 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index 2fade13..65df27c 100644 --- a/tasks.py +++ b/tasks.py @@ -130,9 +130,9 @@ def inner(text: str) -> str: """Format and pads inner text for the message box.""" return ( - f'*{" " * padding}' - f'{text}{" " * (width - len(text) - padding * 2 - 2)}' - f'{" " * padding}*' + f"*{' ' * padding}" + f"{text}{' ' * (width - len(text) - padding * 2 - 2)}" + f"{' ' * padding}*" ) print_callable("=" * width)