ci: allowlist the bounded _unqualified qualifier peel in the recursion detector

This commit is contained in:
mateo-berri 2026-09-04 18:13:51 -07:00
parent 270452db79
commit cd113c3a2e

View file

@ -66,6 +66,7 @@ IGNORE_FUNCTIONS = [
"_json_safe", # max depth set (_MAX_DEPTH) plus a seen-ids cycle guard for self-referential input.
"_redact_agent_params_tree", # max depth set (default 10), same shape as _redact_sensitive_litellm_params.
"_restore_redacted_nested_value", # max depth set (default 10), mirrors _redact_agent_params_tree on the write side.
"_unqualified", # bounded by the qualifier depth of a static TypedDict annotation (Annotated, Required/NotRequired, ReadOnly around one type, no cycles possible).
]