fix(B06): 서버가 못 뜨던 import 수정 — 확정 라우터의 옛 재수출 경로
`B06_Section_Router_Confirm` 이 `_compute_default_designs` 를 `B06_Section_Router`
에서 들여왔는데, 커밋 1d4568b9 가 그 재수출을 지우면서 서버가 아예 안 떴음.
원본 모듈 `B06_Section_Router_Design.compute_default_designs` 에서 곧바로 들여옴.
시험 390건이 이 경로를 안 타서 못 잡았으므로 tmp/tests/test_app_imports.py 추가 —
`main` 을 들여와 라우터 27개가 전부 import 되는지 본다.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -33,7 +33,12 @@ from B06_Section.B06_Section_Repository import (
|
||||
merge_longitudinal_section_options,
|
||||
update_cross_section_design,
|
||||
)
|
||||
from B06_Section.B06_Section_Router import _compute_default_designs
|
||||
|
||||
# 원본은 `B06_Section_Router_Design` 이다 — `B06_Section_Router` 를 거쳐 들여오던 것을
|
||||
# 곧바로 잇는다(2026-09-06). 그 재수출이 없어지면서 서버가 뜨지 못했다.
|
||||
from B06_Section.B06_Section_Router_Design import (
|
||||
compute_default_designs as _compute_default_designs,
|
||||
)
|
||||
from B06_Section.B06_Section_Schema import (
|
||||
SectionConfirmRequest,
|
||||
SectionConfirmResponse,
|
||||
|
||||
Reference in New Issue
Block a user