Skip to content

Commit

Permalink
src/sage/categories/coxeter_groups.py: Move import of ZZ into method
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Oct 25, 2021
1 parent 3aedcc2 commit 9f984a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/categories/coxeter_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from sage.categories.generalized_coxeter_groups import GeneralizedCoxeterGroups
from sage.structure.element import have_same_parent, parent
from sage.misc.flatten import flatten
from sage.rings.integer_ring import ZZ
from copy import copy
from collections import deque

Expand Down Expand Up @@ -2912,6 +2911,7 @@ def kazhdan_lusztig_cell(self, side='left'):
"""
from sage.algebras.iwahori_hecke_algebra import IwahoriHeckeAlgebra
from sage.rings.polynomial.laurent_polynomial_ring import LaurentPolynomialRing
from sage.rings.integer_ring import ZZ

R = LaurentPolynomialRing(ZZ, 'v')
v = R.gen(0)
Expand Down

0 comments on commit 9f984a9

Please sign in to comment.