Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey de l'Arago <joeydelarago@gmail.com>2022-01-31 15:30:09 +0300
committerGitHub <noreply@github.com>2022-01-31 15:30:09 +0300
commit736988da7c9c2bde14dc6e6bbfc7997d13f24534 (patch)
treec209a29f9db1cd98989be013287a0a280d0ad971 /scripts/obj_trimmer.py
parent8f58c786bb9d47b759edb71b005dac5938e4bd87 (diff)
Add space around operators
Co-authored-by: Ghostkeeper <Ghostkeeper@users.noreply.github.com>
Diffstat (limited to 'scripts/obj_trimmer.py')
-rw-r--r--scripts/obj_trimmer.py6
1 files changed, 3 insertions, 3 deletions
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)