This commit is contained in:
2026-06-13 22:47:31 +02:00
parent add3da5177
commit d1446fc452
8032 changed files with 2650751 additions and 1551 deletions

View File

@@ -1820,9 +1820,12 @@ def _korrektur_pairs_active(korrekturen: dict) -> list[tuple[str, str, str]]:
if not isinstance(inactive, dict):
inactive = {}
pairs: list[tuple[str, str, str, int]] = []
skip_cats = {"diktatblocks", "signatur"}
for kategorie, mapping in korrekturen.items():
if not kategorie or str(kategorie).startswith("_"):
continue
if str(kategorie) in skip_cats:
continue
if not isinstance(mapping, dict):
continue
inact = inactive.get(kategorie)