Skip to content

Commit

Permalink
fix: Pass funding when loading goals from list of sources
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Jan 8, 2024
1 parent 23f0d3e commit 91aed63
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -155,7 +155,7 @@ def funding_goals(source: str | list[str | tuple[str, str, str]], funding: int =
return _load_goals_from_disk(source, funding)
goals = {}
for src in source:
source_goals = _load_goals(src)
source_goals = _load_goals(src, funding)
for amount, goal in source_goals.items():
if amount not in goals:
goals[amount] = goal
Expand Down

0 comments on commit 91aed63

Please sign in to comment.