Commit ce8c1c01 authored by Mayank Mittal's avatar Mayank Mittal

fixes linting in the code

parent 8e42f057
...@@ -46,7 +46,6 @@ def run_blender_convert2obj(in_file: str, out_file: str): ...@@ -46,7 +46,6 @@ def run_blender_convert2obj(in_file: str, out_file: str):
Args: Args:
in_file (str): Input mesh file. in_file (str): Input mesh file.
out_file (str): Output obj file. out_file (str): Output obj file.
format (str): The file type to import.
""" """
# resolve for python file # resolve for python file
tools_dirname = os.path.dirname(os.path.abspath(__file__)) tools_dirname = os.path.dirname(os.path.abspath(__file__))
...@@ -93,4 +92,4 @@ if __name__ == "__main__": ...@@ -93,4 +92,4 @@ if __name__ == "__main__":
# Parse command line arguments # Parse command line arguments
args = parse_cli_args() args = parse_cli_args()
# Run conversion # Run conversion
convert_meshes(args.input_dir, args.output_dir) convert_meshes([args.input_dir], [args.output_dir])
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment