Closed hmgaudecker closed 1 year ago
Patch coverage: 100.00%
and project coverage change: +0.10%
:tada:
Comparison is base (
ca39c28
) 94.29% compared to head (6c197ba
) 94.40%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Should be fine now, @mjbloemer and me did check that until 2008, contribution rates differed across health insurers in all years.
I re-ordered the functions in ges_krankenv.py
so that the jahresanfang
version (made spelling consistent across parameters/functions, too) always comes right below the function.
Should be fine now, @mjbloemer and me did check that until 2008, contribution rates differed across health insurers in all years.
Great! That simplifies things.
I just encountered another problem, see #626.
Since abgelt_st_y_tu
is actually part of DEFAULT_TARGETS
(which is not yet time dependend), with this PR and #626 being fixed, we can no longer run GETTSIM with default arguments before 2009.
Possible solution:
targets = DEFAULT_TARGETS if targets is None else targets
such that DEFAULT_TARGETS without respective function to calculate them are ignored.Great catch!
change this line
targets = DEFAULT_TARGETS if targets is None else targets
such that DEFAULT_TARGETS without respective function to calculate them are ignored.
I'd be fine with throwing an error for the time being. I don't think we should make a release before the interface is updated, anyhow. #627 can easily be incorporated in the process, then.
What problem do you want to solve?
Abgeltungssteuer did not exist before 2008; make sure it is active in GETTSIM only after that date.