From b031d08f8653e3e713a9341721ad22b4159e45fa Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 20 Nov 2025 03:39:54 +0000 Subject: [PATCH] Format legacy mapper return value for readability Co-authored-by: taurekaw --- harmonizer/legacy_mapper.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/harmonizer/legacy_mapper.py b/harmonizer/legacy_mapper.py index d8dc4d5..8a20e2d 100644 --- a/harmonizer/legacy_mapper.py +++ b/harmonizer/legacy_mapper.py @@ -926,7 +926,12 @@ def _infer_coordinates_from_text( return None # Normalize - return (love_count / total, justice_count / total, power_count / total, wisdom_count / total) + return ( + love_count / total, + justice_count / total, + power_count / total, + wisdom_count / total, + ) def estimate_architectural_debt(self, hourly_rate: float = 150.0): """Estimate architectural debt in hours and dollars"""