Skip to content

Commit

Permalink
Added commas between the list elements in the default pyproject.toml …
Browse files Browse the repository at this point in the history
…robotpy_extras list.
  • Loading branch information
cwstryker committed Jan 21, 2024
1 parent 5752b31 commit e4e3afa
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 e4e3afa

Please sign in to comment.