Skip to content

Commit

Permalink
Minor correction in error msg of repeat broadcaster
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Jul 31, 2024
1 parent ed9db73 commit ebe31e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/src/pyrenew/arrayutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _broadcast_fn(data: ArrayLike, n_timepoints: int) -> ArrayLike:
raise ValueError(
"The data is too short to broadcast to "
f"the given number of timepoints ({n_timepoints}). The "
"repeated data would have a size of data.size * = "
"repeated data would have a size of data.size * "
f"period_size = {data.size} * {period_size} = "
f"{data.size * period_size}."
)
Expand Down

0 comments on commit ebe31e1

Please sign in to comment.