[docs] module comicfn2dict.log
1 2 3 4 5 6 7 8 9
"""Print log header.""" def print_log_header(label: str) -> None:[docs] """Print log header.""" prefix = "-" * 3 + label suffix_len = 80 - len(prefix) suffix = "-" * suffix_len print(prefix + suffix) # noqa: T201
From here you can search these documents. Enter your search terms below.