Skip to content

Commit

Permalink
fix lint identation
Browse files Browse the repository at this point in the history
  • Loading branch information
b-michaud committed Dec 9, 2024
1 parent a2feb15 commit a77532c
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2329,16 +2329,15 @@ def formula(foyer_fiscal, period, parameters):
impots_totaux_avant_imputations = iai + contribution_exceptionnelle_hauts_revenus - prelevement_forfaitaire_unique_ir - prelevement_forfaitaire_liberatoire

return (
(impots_totaux_avant_imputations > parameters_recouvrement.min_avant_credits_impots) *
(((pre_result <= 0) + (pre_result >= parameters_recouvrement.min_apres_credits_impots)) *
(- result)
)
+
(impots_totaux_avant_imputations <= parameters_recouvrement.min_avant_credits_impots) *
((pre_result < 0) *
(-result)
)
)
(impots_totaux_avant_imputations > parameters_recouvrement.min_avant_credits_impots) * (
((pre_result <= 0) + (pre_result >= parameters_recouvrement.min_apres_credits_impots))
* (- result)
)
+ (impots_totaux_avant_imputations <= parameters_recouvrement.min_avant_credits_impots) * (
(pre_result < 0)
* (-result)
)
)


class foyer_impose(Variable):
Expand Down

0 comments on commit a77532c

Please sign in to comment.