Skip to content

Commit 3bcfb86

Browse files
authored
Merge pull request #66 from BruinGrowly/cursor/check-code-formatting-with-black-8297
Check code formatting with black
2 parents 3acde20 + b031d08 commit 3bcfb86

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)