diff --git a/build.py b/build.py index 6d72966..81ffcd9 100755 --- a/build.py +++ b/build.py @@ -14,12 +14,17 @@ if __name__ == "__main__": make_directory(out) run("dot", str(gv), "-Tsvg", "-o", str(svg)) text = read_file_text(svg) - write(out / "index.css", """\ + write( + out / "index.css", + """\ html { background-color: #202020; } -""") - write(out / "index.html", f"""\ +""", + ) + write( + out / "index.html", + f"""\ @@ -32,4 +37,5 @@ background-color: #202020; {text} -""") +""", + )