We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498a156 commit a18009eCopy full SHA for a18009e
tasks.py
@@ -130,9 +130,9 @@ def inner(text: str) -> str:
130
"""Format and pads inner text for the message box."""
131
132
return (
133
- f'*{" " * padding}'
134
- f'{text}{" " * (width - len(text) - padding * 2 - 2)}'
135
- f'{" " * padding}*'
+ f"*{' ' * padding}"
+ f"{text}{' ' * (width - len(text) - padding * 2 - 2)}"
+ f"{' ' * padding}*"
136
)
137
138
print_callable("=" * width)
utilities/export_todo.py
@@ -81,7 +81,7 @@ def extract_todo_items(root_directory: str) -> dict:
81
82
if in_todo and line.startswith("#"):
83
todo_item.append(line.replace("#", "").strip())
84
- elif len(todo_item):
+ elif todo_item:
85
key = filename.replace("../", "")
86
if not todo_items.get(key):
87
todo_items[key] = []
0 commit comments