Skip to content

Commit

Permalink
Removing extra parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim committed Jun 5, 2024
1 parent a3557b8 commit a86c88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/algebras/hecke_algebras/ariki_koike_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ def _basis_to_word(self, t):
for i, k in enumerate(t[0]):
if not k:
continue
redword.extend(list(range(i, 0, -1))) + [0]*k)
redword.extend(list(range(i, 0, -1)) + [0]*k)
redword.extend(t[1].reduced_word())
return redword

Expand Down

0 comments on commit a86c88e

Please sign in to comment.