Skip to content

Commit 3af1b59

Browse files
committed
Add call to super for make node
1 parent 18362fa commit 3af1b59

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pymc/distributions/timeseries.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ def make_node(self, rng, size, dtype, mu, sigma, init, steps):
5454
if not steps.ndim == 0 or not steps.dtype.startswith("int"):
5555
raise ValueError("steps must be an integer scalar (ndim=0).")
5656

57+
return super().make_node(rng, size, dtype, mu, sigma, init, steps)
58+
5759
def _supp_shape_from_params(self, dist_params, reop_param_idx=0, param_shapes=None):
5860
steps = dist_params[3]
5961

0 commit comments

Comments
 (0)