mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Add space around operators
Co-authored-by: Ghostkeeper <Ghostkeeper@users.noreply.github.com>
This commit is contained in:
parent
8f58c786bb
commit
736988da7c
1 changed files with 3 additions and 3 deletions
|
@ -123,8 +123,8 @@ def merge_duplicate_vt(in_obj, out_obj):
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
parser = argparse.ArgumentParser(description="Reduce the size of a .obj file")
|
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("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.add_argument("--output_file", default = "output.obj", type = str, help = "Output .obj file name")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
process_obj(args.input_file, args.output_file)
|
process_obj(args.input_file, args.output_file)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue