Fix simulate_payoff 4th return value double-counting minimums #20
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: medium
Category: bug
Location:
debts.py:45-46,98Problem
Line 98 returns
total_minimum + extra_monthlythough extra_monthly already includes minimums, overstating monthly outflow. Currently discarded by app.py but a latent trap.Suggested fix
Return
extra_monthlyalone as the monthly total.Filed by automated code review.