We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e2a27 commit 5b0cf6dCopy full SHA for 5b0cf6d
utils.py
@@ -21,10 +21,9 @@ def log_title(title: str, title_len: int = TITLE_LEN):
21
title_len, len(title) + MIN_SIDE_PADDING * 2 + SIDE_WHITE_SPACES * 2
22
)
23
24
- formatted = f"{SIDE_WHITE_SPACES * ' ' + title + ' ' * SIDE_WHITE_SPACES:=^{final_len}}"
+ formatted = f"{SIDE_WHITE_SPACES * ' ' + title + ' ' * SIDE_WHITE_SPACES:=^{final_len}}"
25
logging.info(formatted)
26
27
-
28
@staticmethod
29
def log_to_csv(csv_name: str, field_names: tuple[str], row: dict | None = None):
30
if isinstance(row, dict):
0 commit comments