Skip to content

Commit b031d08

Browse files
Format legacy mapper return value for readability
Co-authored-by: taurekaw <taurekaw@gmail.com>
1 parent 3acde20 commit b031d08

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

harmonizer/legacy_mapper.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,12 @@ def _infer_coordinates_from_text(
926926
return None
927927

928928
# Normalize
929-
return (love_count / total, justice_count / total, power_count / total, wisdom_count / total)
929+
return (
930+
love_count / total,
931+
justice_count / total,
932+
power_count / total,
933+
wisdom_count / total,
934+
)
930935

931936
def estimate_architectural_debt(self, hourly_rate: float = 150.0):
932937
"""Estimate architectural debt in hours and dollars"""

0 commit comments

Comments
 (0)