Skip to content

Commit 2fec315

Browse files
committed
Set deprecated Sigma parameter as None for MvStudentT
1 parent 0d44707 commit 2fec315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ class MvStudentTRandomWalk(MvGaussianRandomWalk):
358358
def __init__(self, nu, *args, **kwargs):
359359
super(MvStudentTRandomWalk, self).__init__(*args, **kwargs)
360360
self.nu = tt.as_tensor_variable(nu)
361-
self.innov = multivariate.MvStudentT.dist(self.nu, *self.innovArgs)
361+
self.innov = multivariate.MvStudentT.dist(self.nu, None, *self.innovArgs)
362362

363363
def _repr_latex_(self, name=None, dist=None):
364364
if dist is None:

0 commit comments

Comments
 (0)