style: auto-fix linting issues

This commit is contained in:
claude[bot] 2026-04-04 18:26:17 +00:00
parent 198d7cabe8
commit eb430456c3

View file

@ -199,7 +199,7 @@ def _detect_export_style(source_code: str, identifier: str) -> str | None:
for match in _EXPORT_COMBINED_PATTERN.finditer(source_code):
matched_id = match.group(match.lastgroup)
if matched_id == identifier:
if match.lastgroup == "default_id":
return "default"