Tree: Format

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri 2024-03-08 01:00:04 -05:00 committed by Brian Dashore
parent cad72315f4
commit c9b4b7c509
2 changed files with 2 additions and 7 deletions

View file

@ -58,12 +58,7 @@ def _log_formatter(record: dict) -> str:
fmt = ""
if len(lines) > 1:
fmt = "\n".join(
[
f"{colored_level}{separator}{line}"
for line in lines
]
)
fmt = "\n".join([f"{colored_level}{separator}{line}" for line in lines])
else:
fmt = f"{colored_level}{separator}{message}"