Skip to content

Commit f3ec9ca

Browse files
committed
Fix syntax error
1 parent f142842 commit f3ec9ca

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
@@ -510,7 +510,7 @@ def random(self, point=None, size=None):
510510
size = to_tuple(size)
511511
multivariate_samples = self.innov.random(point=point, size=size)
512512
# this has shape (size, self.shape)
513-
if len(self.shape) == 2
513+
if len(self.shape) == 2:
514514
# have time dimension in first slot of shape. Therefore the time
515515
# component can be accessed with the index equal to the length of size.
516516
time_axis = len(size)

0 commit comments

Comments
 (0)