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"""