Skip to content

Commit 69e1eba

Browse files
committed
fix typo
1 parent 658b723 commit 69e1eba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pytensor/xtensor/type.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,14 @@ def rename(self, new_name_or_name_dict, **names):
195195
name_dict = new_name_or_name_dict
196196
return rename(name_dict, **names)
197197

198-
199198
def stack(self, dim, **dims):
200199
from pytensor.xtensor.shape import stack
200+
201201
return stack(self, dim, **dims)
202202

203-
def unstack(self, din, **dims):
203+
def unstack(self, dim, **dims):
204204
from pytensor.xtensor.shape import unstack
205+
205206
return unstack(self, dim, **dims)
206207

207208
# def swap_dims(self, *args, **kwargs):

0 commit comments

Comments
 (0)