From 736988da7c9c2bde14dc6e6bbfc7997d13f24534 Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Mon, 31 Jan 2022 12:30:09 +0000 Subject: Add space around operators Co-authored-by: Ghostkeeper --- scripts/obj_trimmer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/obj_trimmer.py b/scripts/obj_trimmer.py index 2798f15dba..ac8e331f38 100644 --- a/scripts/obj_trimmer.py +++ b/scripts/obj_trimmer.py @@ -123,8 +123,8 @@ def merge_duplicate_vt(in_obj, out_obj): if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Reduce the size of a .obj file") - parser.add_argument("input_file", type=str, help="Input .obj file name") - parser.add_argument("--output_file", default="output.obj", type=str, help="Output .obj file name") + parser = argparse.ArgumentParser(description = "Reduce the size of a .obj file") + parser.add_argument("input_file", type = str, help = "Input .obj file name") + parser.add_argument("--output_file", default = "output.obj", type = str, help = "Output .obj file name") args = parser.parse_args() process_obj(args.input_file, args.output_file) -- cgit v1.2.3