mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
style: auto-fix linting issues
This commit is contained in:
parent
198d7cabe8
commit
eb430456c3
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue