second pass. medium

This commit is contained in:
Davide Scaini
2026-04-01 11:05:00 +02:00
parent 94369606a4
commit 3d364c3992
7 changed files with 34 additions and 15 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class ExtractConfig:
def load_config(path: Path) -> ExtractConfig:
raw = yaml.safe_load(path.read_text())
raw = yaml.safe_load(path.read_text()) or {}
inp = raw.get("input", {})
dirs = [Path(d).expanduser() for d in inp.get("dirs", [])]