Skip to content

Commit 18478ca

Browse files
committed
fix E251 in Clifford too
1 parent 905a0ee commit 18478ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/algebras/clifford_algebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ def _basis_index_function(self, x):
666666
# if the input is a tuple, assume that it has
667667
# entries in {0, ..., 2**Q.dim()-1}
668668
if isinstance(x, tuple):
669-
return FrozenBitset(x, capacity = Q.dim())
669+
return FrozenBitset(x, capacity=Q.dim())
670670

671671
# slice the output of format in order to make conventions
672672
# of format and FrozenBitset agree.

0 commit comments

Comments
 (0)