Skip to content

Commit

Permalink
fix another mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed May 12, 2024
1 parent 819d178 commit debb417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/algebras/fusion_rings/f_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def _get_known_nonz(self):
100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100)
"""
nonz = {idx: 100 for idx in self._singles}
for idx in self._ks:
for idx, _ in self._ks.items():
nonz[idx] = 100
return ETuple(nonz, self._poly_ring.ngens())

Expand Down

0 comments on commit debb417

Please sign in to comment.