auto: 2026-09-22 03:10 (EOMSANGDON-HOME)

This commit is contained in:
2026-09-22 03:10:31 +09:00
parent 323e1d2c3d
commit 6a2925a9ec
8 changed files with 305 additions and 18 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ def _all_sections(book: str) -> list[dict]:
def _counts() -> dict[tuple[str, str], list[int]]:
"""(구분, 절 번호) → [표 수, 로직 수] — 아래 절까지 세도록 절 번호의 모든 앞마디에 얹음."""
out: dict[tuple[str, str], list[int]] = {}
for data in cm.load(folder=store.FOLDER).values():
for data in store.loaded()[0].values():
group = data.get("그룹")
at = 0 if group in cm.mf.TABLE_GROUPS else 1 if group == "로직" else None
if at is None:
@@ -236,7 +236,7 @@ def logic_edit(key: str, version: str, logic: dict, owner: str = "") -> dict:
def logic_formula(key: str) -> dict:
"""로직 한 줄을 별칭 꼴 식 묶음으로 펴 보임 — 되돌릴 원문은 `별칭` 에 그대로(정본은 안 바뀜)."""
got = store.logic(key)
master = cm.mf.Master(cm.load(folder=store.FOLDER))
master = store.loaded()[1]
return {
"file": got["file"],
"version": got["version"],