Skip to content

Commit

Permalink
Correct order of arguments (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-hirsch authored Jun 27, 2024
1 parent 695f079 commit c2fcb55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scoringrules/_brier.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def brier_score(
The computed Brier Score.
"""
return brier.brier_score(forecasts, observations, backend=backend)
return brier.brier_score(obs=observations, forecasts=forecasts, backend=backend)


__all__ = ["brier_score"]

0 comments on commit c2fcb55

Please sign in to comment.