Explorar o código

Decreased merge threshold.

Lily Carpenter %!s(int64=11) %!d(string=hai) anos
pai
achega
05d6d77001
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      budget.py

+ 1 - 1
budget.py

@@ -136,7 +136,7 @@ class PayPeriod:
136 136
         money_left_next = next_period.money_left
137 137
         print("Money After Bills + Expenses Next: " + str(money_left_next.quantize(TWOPLACES)))
138 138
 
139
-        if money_left_next <= 0:
139
+        if money_left_next <= 200:
140 140
             print("Not enough money left next paycheck!! Expenses being rolled together!")
141 141
             self.expenses += next_period.expenses
142 142
             self.calculate_budget()