This commit is contained in:
Pablo Martin 2024-06-12 17:41:31 +02:00
parent 78e3d71b05
commit 15e8b8e513
3 changed files with 24 additions and 2 deletions

View file

@ -74,7 +74,7 @@ def get_rates(
end_date: Union[str, datetime.datetime, datetime.date],
currencies: Union[None, str],
dry_run: bool,
rates_sources: str,
rates_source: str,
ignore_warnings: bool,
output: pathlib.Path,
):
@ -83,7 +83,7 @@ def get_rates(
end_date=end_date,
currencies=currencies,
dry_run=dry_run,
rates_sources=rates_sources,
rates_source=rates_source,
ignore_warnings=ignore_warnings,
output=output,
)

View file

@ -56,6 +56,7 @@ def run_get_rates(
date_range: DateRange,
currencies: List[Currency],
dry_run: bool,
rates_source: str,
ignore_warnings: bool,
output: pathlib.Path,
) -> None: