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

Commit

Permalink
fixed failing doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed May 11, 2020
1 parent efb0bd3 commit 53fd2a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2816,8 +2816,8 @@ cdef class CombinatorialPolyhedron(SageObject):
face_iter.set_atom_rep()

# Copy the information.
edges[one][2*two] = face_iter.atom_rep[0]
edges[one][2*two + 1] = face_iter.atom_rep[1]
edges[one][2*two] = face_iter.structure.atom_rep[0]
edges[one][2*two + 1] = face_iter.structure.atom_rep[1]
counter += 1

d = face_iter.next_dimension() # Go to next face.
Expand Down

0 comments on commit 53fd2a2

Please sign in to comment.