Skip to content

Commit a327630

Browse files
authored
404 dependency typing change fix (#407)
* Removing array stacking that caused typing issue
1 parent 49d628f commit a327630

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pyttb/tensor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1391,7 +1391,6 @@ def symmetrize( # noqa: PLR0912,PLR0915
13911391
combos = []
13921392
for i in range(0, ngrps):
13931393
combos.append(np.array(list(permutations(grps[i, :]))))
1394-
combos = np.stack(combos)
13951394

13961395
# Create all the permutations to be averaged
13971396
combo_lengths = [len(perm) for perm in combos]

0 commit comments

Comments
 (0)