Skip to content

Commit 8821a49

Browse files
committed
FIX: fix _tensordot_to_einsum error
1 parent 2591d3d commit 8821a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysindy/utils/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ def _tensordot_to_einsum(
676676
for a_ind, b_ind in zip(*axes):
677677
sub_b_li[b_ind] = sub_a[a_ind]
678678
sub_b = "".join(sub_b_li)
679-
sub = f"{sub_a}, {sub_b}"
679+
sub = f"{sub_a},{sub_b}"
680680
return sub
681681

682682

0 commit comments

Comments
 (0)