Skip to content

Commit daabeb3

Browse files
committed
Fix failing TestHyp2F1Broadcast
1 parent 3fcf636 commit daabeb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytensor/scalar/math.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1638,9 +1638,9 @@ def compute_grad_2f1(a, b, c, z, wrt):
16381638

16391639
return compute_grad_2f1(a, b, c, z, wrt=wrt)
16401640

1641-
def __call__(self, a, b, c, z, wrt):
1641+
def __call__(self, a, b, c, z, wrt, **kwargs):
16421642
# This allows wrt to be a keyword argument
1643-
return super().__call__(a, b, c, z, wrt)
1643+
return super().__call__(a, b, c, z, wrt, **kwargs)
16441644

16451645
def c_code(self, *args, **kwargs):
16461646
raise NotImplementedError()

0 commit comments

Comments
 (0)