Skip to content

Commit faf1bd2

Browse files
committed
add comma between dependencies
1 parent 6f3c205 commit faf1bd2

File tree

1 file changed

+3
-3
lines changed
  • src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}

1 file changed

+3
-3
lines changed

src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ requires-python = ">=3.9"
1414
keywords = {{ cookiecutter.project_keywords.split() | jsonify }}
1515
dependencies = [
1616
{%- if cookiecutter.init_cli %}
17-
"typer[all]>=0.12.3"
17+
"typer[all]>=0.12.3",
1818
{%- endif %}
1919
{%- if cookiecutter.init_api %}
20-
"fastapi>=0.111.1"
21-
"uvicorn>=0.30.4"
20+
"fastapi>=0.111.1",
21+
"uvicorn>=0.30.4",
2222
{%- endif %}
2323
]
2424

0 commit comments

Comments
 (0)