You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(BA-5832): annotate _load_items return type for mypy
`list[dict]` was missing the value type parameter and `json.loads`
returns `Any`, so mypy flagged 9 type-arg / no-any-return errors. Use
`list[dict[str, Any]]` and `cast()` to keep CLAUDE.md's
no-`# type: ignore` rule.
Also picks up a stale BA-5829 ruff format on Fragment node.py from the
JSON-scalar fix cascade.
0 commit comments