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

Commit 74bc04b

Browse files
author
Matthias Koeppe
committed
src/sage/geometry/polyhedron/base{3,6}.py: Muffle pyflakes warnings about unused imports
1 parent 0f12ac2 commit 74bc04b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/sage/geometry/polyhedron/base3.py

+1
Original file line numberDiff line numberDiff line change
@@ -1863,6 +1863,7 @@ def _test_combinatorial_face_as_combinatorial_polyhedron(self, tester=None, **op
18631863
D2._test_bitsets(tester, **options)
18641864
try:
18651865
import sage.graphs.graph
1866+
assert sage.graphs.graph # to muffle pyflakes
18661867
except ImportError:
18671868
pass
18681869
else:

src/sage/geometry/polyhedron/base6.py

+1
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,7 @@ def _test_gale_transform(self, tester=None, **options):
699699

700700
try:
701701
import sage.graphs.graph
702+
assert sage.graphs.graph # to muffle pyflakes
702703
except ImportError:
703704
pass
704705
else:

0 commit comments

Comments
 (0)