fix(infra): fix trailing comma regex in profile generation script (#35333)

The trailing comma regex in the profile generation script consumed the
closing `}` as part of its match, preventing nested closing braces from
getting their own trailing comma. This caused `ruff format` failures on
every generated `_profiles.py` file.

Switches to a lookahead (`(?=...)`) so the closing bracket is asserted
but not consumed, allowing each nesting level to independently receive
its trailing comma.

Fixes #35332.
This commit is contained in:
Mason Daugherty
2026-02-19 13:27:02 -05:00
committed by GitHub
parent 6a6ef8caad
commit 4af87fd025
2 changed files with 2 additions and 2 deletions

View File

@@ -370,7 +370,7 @@ wheels = [
[[package]]
name = "langchain-core"
version = "1.2.13"
version = "1.2.14"
source = { editable = "../../core" }
dependencies = [
{ name = "jsonpatch" },