Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainipp committed Oct 2, 2024
1 parent c852cea commit 826a751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfisca_france/model/prestations/minima_sociaux/ppa.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def formula_2024_10(famille, period, parameters):
departement_experimentation_rsa = famille('departement_experimentation_rsa', period)
experimentation = ppa_base_formula(famille=famille, parameters=parameters, period=period, three_months_of_reference=last_3_months_offset_minus_1(period))
normal = ppa_base_formula(famille=famille, parameters=parameters, period=period, three_months_of_reference=period.last_3_months)
return departement_experimentation_rsa * experimentation + (1 - experimentation) * normal
return departement_experimentation_rsa * experimentation + (1 - departement_experimentation_rsa) * normal

def formula_2016_01_01(famille, period, parameters):
return ppa_base_formula(famille=famille, parameters=parameters, period=period, three_months_of_reference=period.last_3_months)
Expand Down

0 comments on commit 826a751

Please sign in to comment.