From ded779bfb0d36d8c1b8e56781518e04324db2237 Mon Sep 17 00:00:00 2001 From: gabe Date: Wed, 26 Jan 2022 15:24:09 -0600 Subject: [PATCH] removed whitespace-only lines. --- ASCIIsite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ASCIIsite.py b/ASCIIsite.py index f0978b5..6a4ba08 100755 --- a/ASCIIsite.py +++ b/ASCIIsite.py @@ -32,7 +32,7 @@ def parse_arguments(): compress=False else: compress=args.compress - + #If outfile was not set, set it. if args.output == None: baseName=args.inputDir.with_name(args.inputDir.name+'_compiled').name @@ -128,7 +128,7 @@ def convert_file(inDir: Path, outDir: Path, inFile: Path, stylesheet: Path): #Destination dir. It takes the file from the subtree --source-dir and puts it in the equivilant location in the subtree --destination-dir. (talking about filesystem subtrees). f'--destination-dir={outDir}', inFile] - + if stylesheet != None: arguments.insert(1, f'--attribute=copycss={stylesheet}') arguments.insert(1, f'--attribute=stylesheet={stylesheet.name}')