Skip to content

Commit 88be2fd

Browse files
committed
refactor: consistently handle defaults for layers to extract
1 parent b665c14 commit 88be2fd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vesskel/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ def to_dict(self) -> dict[str, Any]:
4747
def from_dict(cls, data: dict[str, Any]) -> ExtractionConfig:
4848
_warn_unknown_keys({f.name for f in fields(cls)}, data)
4949
return cls(
50-
branches=data.get("branches", True),
51-
branch_text=data.get("branch_text", True),
52-
summary=data.get("summary", True),
50+
branches=data.get("branches", False),
51+
branch_text=data.get("branch_text", False),
52+
summary=data.get("summary", False),
5353
fractal_dimension=data.get("fractal_dimension", False),
5454
vessel_radius=data.get("vessel_radius", False),
5555
junction_cleanup=data.get("junction_cleanup", False),

0 commit comments

Comments
 (0)