@@ -74,7 +74,7 @@ def product_on_basis(self, g1, g2):
7474 EXAMPLES::
7575
7676 sage: A = HopfAlgebrasWithBasis(QQ).example()
77- sage: ( a, b) = A._group.gens()
77+ sage: a, b = A._group.gens()
7878 sage: a*b
7979 (1,2)
8080 sage: A.product_on_basis(a, b)
@@ -107,7 +107,7 @@ def coproduct_on_basis(self, g):
107107 EXAMPLES::
108108
109109 sage: A = HopfAlgebrasWithBasis(QQ).example()
110- sage: ( a, b) = A._group.gens()
110+ sage: a, b = A._group.gens()
111111 sage: A.coproduct_on_basis(a)
112112 B[(1,2,3)] # B[(1,2,3)]
113113 """
@@ -123,7 +123,7 @@ def counit_on_basis(self, g):
123123 EXAMPLES::
124124
125125 sage: A = HopfAlgebrasWithBasis(QQ).example()
126- sage: ( a, b) = A._group.gens()
126+ sage: a, b = A._group.gens()
127127 sage: A.counit_on_basis(a)
128128 1
129129 """
@@ -138,7 +138,7 @@ def antipode_on_basis(self, g):
138138 EXAMPLES::
139139
140140 sage: A = HopfAlgebrasWithBasis(QQ).example()
141- sage: ( a, b) = A._group.gens()
141+ sage: a, b = A._group.gens()
142142 sage: A.antipode_on_basis(a)
143143 B[(1,3,2)]
144144 """
0 commit comments