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

Commit 5feb98c

Browse files
author
Jonathan Kliem
committed
missing import
1 parent 19bc7e4 commit 5feb98c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/sage/geometry/polyhedron/backend_ppl.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
from sage.rings.integer import Integer
77
from sage.arith.functions import LCM_list
88
from sage.misc.functional import denominator
9+
from .base import Polyhedron_base
10+
from .base_QQ import Polyhedron_QQ
11+
from .base_ZZ import Polyhedron_ZZ
12+
13+
from sage.misc.lazy_import import lazy_import
914
from sage.features import PythonModule
1015
lazy_import('ppl', ['C_Polyhedron', 'Generator_System', 'Constraint_System',
1116
'Linear_Expression', 'line', 'ray', 'point'],
1217
feature=PythonModule("ppl", spkg="pplpy"))
13-
from .base import Polyhedron_base
14-
from .base_QQ import Polyhedron_QQ
15-
from .base_ZZ import Polyhedron_ZZ
1618

1719

1820
#########################################################################

0 commit comments

Comments
 (0)