Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion harmonizer/legacy_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
Loading