Skip to content

Commit 884a618

Browse files
committed
oops, correct workaround
1 parent 98b857a commit 884a618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/combinat/integer_vectors_mod_permgroup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class IntegerVectorsModPermutationGroup(UniqueRepresentation):
183183
erroneous results. To avoid this issue, compute a strong
184184
generating system for the group as::
185185
186-
sgs = tuple(s for s in G.strong_generating_system())
186+
sgs = tuple(tuple(s) for s in G.strong_generating_system())
187187
188188
and provide it as the optional `sgs` argument to the
189189
constructor.

0 commit comments

Comments
 (0)