Skip to content

Commit

Permalink
fix: make date in three months from now (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
spameier authored Mar 3, 2023
1 parent 9ed22b0 commit 654b6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suisa_sendemeldung/suisa_sendemeldung.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def main(): # pragma: no cover
start_date - timedelta(days=365), format="yyyy", locale=args.locale
),
"in_three_months": format_date(
end_date + relativedelta(months=+3),
datetime.now() + relativedelta(months=+3),
format="long",
locale=args.locale,
),
Expand Down

0 comments on commit 654b6a3

Please sign in to comment.