Skip to content

Commit

Permalink
Merge pull request #108 from cwstryker/cwstryker/robotpy-extras-commas
Browse files Browse the repository at this point in the history
Default pyproject.toml robotpy_extras list needs commas
  • Loading branch information
virtuald authored Jan 21, 2024
2 parents 5752b31 + e4e3afa commit ad86919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robotpy_installer/pyproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def write_default_pyproject(
if not provides_extra:
extras = ""
else:
extras = "\n # ".join(f'"{extra}"' for extra in sorted(provides_extra))
extras = "\n # ".join(f'"{extra}",' for extra in sorted(provides_extra))

content = inspect.cleandoc(
f"""
Expand Down

0 comments on commit ad86919

Please sign in to comment.