Skip to content

Commit 6fd4a5c

Browse files
author
Matthias Koeppe
committed
src/sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py: Use lazy_import
1 parent 3336ac8 commit 6fd4a5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@
2323
from copy import copy
2424
from sage.structure.unique_representation import UniqueRepresentation
2525
from sage.misc.cachefunc import cached_method
26+
from sage.misc.lazy_import import lazy_import
2627
from sage.rings.integer_ring import ZZ
2728
from sage.rings.infinity import infinity
2829
from sage.graphs.digraph import DiGraph
2930
from sage.graphs.graph import Graph
3031
from sage.arith.misc import binomial, euler_phi
3132
from sage.misc.misc_c import prod
32-
from sage.matrix.constructor import matrix
33+
34+
lazy_import('sage.matrix.constructor', 'matrix')
3335

3436

3537
class QuiverMutationTypeFactory(SageObject):

0 commit comments

Comments
 (0)