Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and Gold856 committed Sep 23, 2024
1 parent 4eaedc7 commit ea62a83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wpilibj/generate_hids.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def generate_hids(output_directory: Path, template_directory: Path):

# Java files
env = Environment(
loader=FileSystemLoader(template_directory/ "main/java"),
loader=FileSystemLoader(template_directory / "main/java"),
autoescape=False,
keep_trailing_newline=True,
)
Expand Down
2 changes: 1 addition & 1 deletion wpilibj/generate_pwm_motor_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def generate_pwm_motor_controllers(output_root, template_root):
controllers = json.load(f)

env = Environment(
loader=FileSystemLoader(str(template_root /"main/java")),
loader=FileSystemLoader(str(template_root / "main/java")),
autoescape=False,
keep_trailing_newline=True,
)
Expand Down

0 comments on commit ea62a83

Please sign in to comment.