robotpy / robotpy-installer

RobotPy installer program
MIT License
5 stars 11 forks source link

Default pyproject.toml robotpy_extras list needs commas #108

Closed cwstryker closed 7 months ago

cwstryker commented 7 months ago

This is a small usability improvement. The robotpy init subcommand now adds commas between the list elements in the robotpy_extras list when creating a new pyproject.toml file.

Old:

robotpy_extras = [

"all"

# "apriltag"
# "commands2"
...

]

New:

robotpy_extras = [

"all",

# "apriltag",
# "commands2",
...

]

I verified that pytest passes.

virtuald commented 7 months ago

Thanks!