From c97e949792a0e9d37c37a815a75c3f08543644c5 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sun, 6 Sep 2026 21:12:41 +0900 Subject: [PATCH] =?UTF-8?q?fix(B06):=20=EC=84=9C=EB=B2=84=EA=B0=80=20?= =?UTF-8?q?=EB=AA=BB=20=EB=9C=A8=EB=8D=98=20import=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=E2=80=94=20=ED=99=95=EC=A0=95=20=EB=9D=BC=EC=9A=B0=ED=84=B0?= =?UTF-8?q?=EC=9D=98=20=EC=98=9B=20=EC=9E=AC=EC=88=98=EC=B6=9C=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `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) --- B06_Section/B06_Section_Router_Confirm.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/B06_Section/B06_Section_Router_Confirm.py b/B06_Section/B06_Section_Router_Confirm.py index ea915f03..ac43045f 100644 --- a/B06_Section/B06_Section_Router_Confirm.py +++ b/B06_Section/B06_Section_Router_Confirm.py @@ -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,