Skip to content

Commit 5b0cf6d

Browse files
committed
fixed linter
1 parent 61e2a27 commit 5b0cf6d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ def log_title(title: str, title_len: int = TITLE_LEN):
2121
title_len, len(title) + MIN_SIDE_PADDING * 2 + SIDE_WHITE_SPACES * 2
2222
)
2323

24-
formatted = f"{SIDE_WHITE_SPACES * ' ' + title + ' ' * SIDE_WHITE_SPACES:=^{final_len}}"
24+
formatted = f"{SIDE_WHITE_SPACES * ' ' + title + ' ' * SIDE_WHITE_SPACES:=^{final_len}}"
2525
logging.info(formatted)
2626

27-
2827
@staticmethod
2928
def log_to_csv(csv_name: str, field_names: tuple[str], row: dict | None = None):
3029
if isinstance(row, dict):

0 commit comments

Comments
 (0)