From 5c2353f711a3f7db4da07363855c1f0feb5437a9 Mon Sep 17 00:00:00 2001 From: Mizev Andrew <150728785+carpalsgrabby@users.noreply.github.com> Date: Tue, 25 Nov 2025 09:54:29 +0100 Subject: [PATCH] Add LayoutResult.__repr__ via repr=False fields or just rely on dataclass --- choose_best_layout.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/choose_best_layout.py b/choose_best_layout.py index 8ac4dc2..5af6dd6 100644 --- a/choose_best_layout.py +++ b/choose_best_layout.py @@ -13,10 +13,12 @@ @dataclass class LayoutResult: + """Simple wrapper for a fanout and its app.py JSON output.""" fanout: int data: Dict[str, Any] + METRICS = [ "treeHeight", "totalNodes",