From 644ce83d144c5ca36fdb430f17685e3bdda2f389 Mon Sep 17 00:00:00 2001 From: CrispyPin Date: Wed, 11 Jan 2023 22:44:28 +0100 Subject: [PATCH] clean up python with black --- html-combiner.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/html-combiner.py b/html-combiner.py index bdf4eb1..a557b67 100755 --- a/html-combiner.py +++ b/html-combiner.py @@ -8,6 +8,7 @@ TARGET_DIR = "./docs/" INCLUDE_MARKER = " None: items = os.listdir(PAGE_DIR + path) for name in items: @@ -17,12 +18,12 @@ def process_dir(path: str = "") -> None: process_file(path + name) -def process_file(filepath: str) -> str: +def process_file(filepath: str) -> None: print("processing " + filepath) contents = read_file(PAGE_DIR + filepath) while INCLUDE_MARKER in contents: contents = apply_include(contents) - + ensure_dir(TARGET_DIR + filepath) with open(TARGET_DIR + filepath, "w") as f: @@ -61,7 +62,7 @@ def get_included_name(contents): def get_marker_indices(contents: str) -> tuple: index_start = contents.find(INCLUDE_MARKER) - index_end = contents.find(INCLUDE_MARKER_END, index_start) + index_end = contents.find(INCLUDE_MARKER_END, index_start) return (index_start, index_end) @@ -70,7 +71,7 @@ def read_file(filepath: str): with open(filepath, "r") as f: contents = f.read() return contents - + if __name__ == "__main__": process_dir()