Add missing comma in projects/dependencies.md (#14613)

## Summary

Diff:

```diff
 [dependency-groups]
 dev = [
-  {include-group = "lint"}
+  {include-group = "lint"},
   {include-group = "test"}
 ]
```

## Test Plan

None.
This commit is contained in:
InSync 2025-07-15 02:06:05 +07:00 committed by GitHub
parent 77c771c7f3
commit b046e7f3be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -686,7 +686,7 @@ A dependency group can include other dependency groups, e.g.:
```toml title="pyproject.toml"
[dependency-groups]
dev = [
{include-group = "lint"}
{include-group = "lint"},
{include-group = "test"}
]
lint = [