Skip to content

Commit f933f0c

Browse files
miguelmarcotscrim
andauthored
Update src/sage/algebras/commutative_dga.py
Co-authored-by: Travis Scrimshaw <[email protected]>
1 parent f099194 commit f933f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/algebras/commutative_dga.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ def __call__(self, *values, **kwargs):
16131613
images[i] = kwargs[gstr]
16141614
res = 0
16151615
for (m, c) in self.dict().items():
1616-
term = prod([gen**y for (y, gen) in zip(m, images)], c)
1616+
term = prod((gen**y for (y, gen) in zip(m, images)), c)
16171617
res += term
16181618
return res
16191619

0 commit comments

Comments
 (0)