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

Commit

Permalink
pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
jplab committed Jul 24, 2019
1 parent c69d74f commit e5ecbcf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/sage/geometry/polyhedron/backend_cdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
from six import PY2

from subprocess import Popen, PIPE
from sage.rings.all import ZZ, QQ, RDF
from sage.misc.all import SAGE_TMP, tmp_filename, union, cached_method, prod
from sage.rings.all import ZZ
from sage.matrix.constructor import matrix

from .base import Polyhedron_base
Expand Down Expand Up @@ -296,7 +295,7 @@ def parse_V_representation(intro, data):

def parse_adjacency(intro, data, N, cdd_indices_to_sage_indices):
ret = matrix(ZZ, N, N, 0)
cdd_vertex_count = int(data.pop(0)[0])
data.pop(0)[0]
data.reverse()
for adjacencies in data:
assert adjacencies[2] == ':', "Not a line of adjacency data"
Expand Down

0 comments on commit e5ecbcf

Please sign in to comment.