Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jul 30, 2024
1 parent 1b86e83 commit 2600a5f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions aip_xx1_description/scripts/compile_xacro.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,15 +351,21 @@ def main(

if __name__ == "__main__":
import argparse

parser = argparse.ArgumentParser(description="Process four positional arguments.")

# Add four positional arguments
parser.add_argument('template_directory', type=str, help='The first argument')
parser.add_argument('calibration_directory', type=str, help='The second argument')
parser.add_argument('output_directory', type=str, help='The third argument')
parser.add_argument('project_name', type=str, help='The fourth argument')
parser.add_argument("template_directory", type=str, help="The first argument")
parser.add_argument("calibration_directory", type=str, help="The second argument")
parser.add_argument("output_directory", type=str, help="The third argument")
parser.add_argument("project_name", type=str, help="The fourth argument")

# Parse the arguments
args = parser.parse_args()

main(args.template_directory, args.calibration_directory, args.output_directory, args.project_name)
main(
args.template_directory,
args.calibration_directory,
args.output_directory,
args.project_name,
)

0 comments on commit 2600a5f

Please sign in to comment.