TovaHasi commited on
Commit
bfd46a6
1 Parent(s): b5df863

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ def get_revenue(idx):
52
 
53
  def get_costs(idx):
54
  indexation = math.floor(idx / 12)
55
- wage_fund_with_indexation = math.pow((Social_benefits_for_one_employee + Monthly_salary_rate), indexation)
56
 
57
  Expected_repair_costs_per_month = Number_machines * Equipment_breakdown_rate * The_cost_of_repairing_one_car
58
  Wage_Fund = Number_employees * wage_fund_with_indexation
 
52
 
53
  def get_costs(idx):
54
  indexation = math.floor(idx / 12)
55
+ wage_fund_with_indexation = (Social_benefits_for_one_employee + Monthly_salary_rate) * math.pow(Rate_CPI, indexation)
56
 
57
  Expected_repair_costs_per_month = Number_machines * Equipment_breakdown_rate * The_cost_of_repairing_one_car
58
  Wage_Fund = Number_employees * wage_fund_with_indexation