diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index af8ded5..e2107bc 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -60,7 +60,7 @@ def fetch(name: str): def read_file(path: str) -> str: return open(path, "r", encoding="utf-8-sig").read() -def rewrite_file(path: str, content: str) -> int: +def overwrite_file(path: str, content: str) -> int: return open(path, "w", encoding="utf-8").write(content) def read_from_file_or_stdin(path: str) -> str: @@ -107,7 +107,7 @@ def compile_substituted_file(input_file: str, output_file: str) -> None: def main_workflow(input_file: str, output_file: str, \ substitute_contents: Dict[str, str]) -> None: - rewrite_file(input_file, substitute_contents) + overwrite_file(input_file, substitute_contents) compile_substituted_file(input_file, output_file) preprocessor_bool = lambda value: "1" if value else "0"