Skip to content

Commit

Permalink
fix set input
Browse files Browse the repository at this point in the history
  • Loading branch information
clallemand committed Apr 16, 2024
1 parent 9184079 commit 56afa0b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class csg_salaire(Variable):
entity = Individu
label = 'CSG salaire'
definition_period = MONTH
set_input = set_input_divide_by_period

def formula(individu, period):
return (
Expand Down Expand Up @@ -65,6 +66,7 @@ class csg_retraite(Variable):
entity = Individu
label = 'CSG sur les retraites'
definition_period = MONTH
set_input = set_input_divide_by_period

def formula(individu, period):
return (
Expand All @@ -79,6 +81,7 @@ class csg_chomage(Variable):
entity = Individu
label = 'CSG sur le chomage'
definition_period = MONTH
set_input = set_input_divide_by_period

def formula(individu, period):
return (
Expand Down

0 comments on commit 56afa0b

Please sign in to comment.