From e4e3afa1579e49ca962fb5722330af608bbbdad5 Mon Sep 17 00:00:00 2001 From: Chadwick Stryker Date: Sun, 21 Jan 2024 06:09:45 -0800 Subject: [PATCH] Added commas between the list elements in the default pyproject.toml robotpy_extras list. --- robotpy_installer/pyproject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robotpy_installer/pyproject.py b/robotpy_installer/pyproject.py index 116369b..3f0b36d 100644 --- a/robotpy_installer/pyproject.py +++ b/robotpy_installer/pyproject.py @@ -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"""