diff options
Diffstat (limited to 'date_calculator.py')
| -rw-r--r-- | date_calculator.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/date_calculator.py b/date_calculator.py index df13721..e6c20fc 100644 --- a/date_calculator.py +++ b/date_calculator.py @@ -94,13 +94,13 @@ class DateCalculator: other_kwargs = {} for k, v in kwargs.items(): - if k == "Sonstige": + if k == "event": events.extend(v) - elif k == "EZ 50%": + elif k == "half_project": half_projects.extend(v) - elif k == "EZ 100%": + elif k == "full_project": full_projects.extend(v) - elif k == "EZ pauschal": + elif k == "two_years": full_projects.extend(v) else: other_kwargs[k] = v |
