Skip to content

Commit f1aa435

Browse files
committed
style: fix ruff formatting in audit_coverage.py
1 parent b2ba187 commit f1aa435

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tooling/docs-autogen/audit_coverage.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,7 @@ def _check_member(member, full_path: str, short_threshold: int) -> list[dict]:
281281
# section exists, every entry must match an actual declared field and every
282282
# declared field must appear — stale or missing entries are always a bug.
283283
is_typeddict = any(
284-
_TYPEDDICT_BASES.search(str(base))
285-
for base in getattr(member, "bases", [])
284+
_TYPEDDICT_BASES.search(str(base)) for base in getattr(member, "bases", [])
286285
)
287286
if is_typeddict and _ATTRIBUTES_RE.search(doc_text):
288287
attrs_block = re.search(

0 commit comments

Comments
 (0)