Skip to content

Commit 2ecced8

Browse files
committed
fix(analysis): scorecard calcScorecard 에 analyze 호출 rename 누락 수정
Phase 7B rename 때 분산 regex 로 15곳 갱신하면서 scorecard.py:75 의 insights = analyze(...) 한 건 놓침. CI 실패 (3.13) 10건 전부 이 한 곳이 원인: - test_analysis_integration 4건 (NameError: analyze) - test_review_integration 6건 (NameError: analyze via scorecard 경유) 로컬 10/10 통과 확인. v0.9.13 tag 재트리거.
1 parent 2ff4e66 commit 2ecced8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dartlab/analysis/financial/scorecard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def calcScorecard(company, *, basePeriod: str | None = None) -> dict | None:
7272
try:
7373
from dartlab.analysis.financial.insight.pipeline import analyzeFinancial
7474

75-
insights = analyze(company.stockCode, company=company)
75+
insights = analyzeFinancial(company.stockCode, company=company)
7676
if hasattr(company, "_cache"):
7777
company._cache[cacheKey] = insights
7878
except (ImportError, ValueError, KeyError, AttributeError, TypeError, RuntimeError, OSError):

0 commit comments

Comments
 (0)