Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 4d53db6

Browse files
author
Matthias Koeppe
committed
src/sage/categories/coxeter_groups.py: Remove module-level import from sage.graphs
1 parent 056b8d4 commit 4d53db6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sage/categories/coxeter_groups.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from sage.categories.generalized_coxeter_groups import GeneralizedCoxeterGroups
2323
from sage.structure.element import have_same_parent, parent
2424
from sage.misc.flatten import flatten
25-
from sage.graphs.digraph import DiGraph
2625
from sage.rings.integer_ring import ZZ
2726
from copy import copy
2827
from collections import deque
@@ -2943,6 +2942,6 @@ def kazhdan_lusztig_cell(self, side='left'):
29432942
vertices.add(y)
29442943
queue.appendleft(y)
29452944

2945+
from sage.graphs.digraph import DiGraph
29462946
g = DiGraph([list(vertices), list(edges)])
29472947
return set(g.strongly_connected_component_containing_vertex(w))
2948-

0 commit comments

Comments
 (0)