Skip to content

Commit de7aaf0

Browse files
Fixed typo in posterior sampling warnings.
1 parent 27f4683 commit de7aaf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/sampling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,9 +1567,9 @@ def sample_posterior_predictive(
15671567
nchain = 1
15681568

15691569
if keep_size and samples is not None:
1570-
raise IncorrectArgumentsError("Should not specify both keep_size and samples argukments")
1570+
raise IncorrectArgumentsError("Should not specify both keep_size and samples arguments")
15711571
if keep_size and size is not None:
1572-
raise IncorrectArgumentsError("Should not specify both keep_size and size argukments")
1572+
raise IncorrectArgumentsError("Should not specify both keep_size and size arguments")
15731573

15741574
if samples is None:
15751575
if isinstance(trace, MultiTrace):

0 commit comments

Comments
 (0)