Skip to content

Commit 108886f

Browse files
committed
Fix issue #82 in rmgpy.molecule.graph.Graph.getSmallestSetOfSmallestRings
Closes #82.
1 parent acccd69 commit 108886f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rmgpy/molecule/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def getSmallestSetOfSmallestRings(self):
633633

634634
# Map atoms in cycles back to atoms in original graph
635635
for i in range(len(cycleList)):
636-
cycleList[i] = [self.vertices[vertices.index(v)] for v in cycles[i]]
636+
cycleList[i] = [self.vertices[vertices.index(v)] for v in cycleList[i]]
637637

638638
return cycleList
639639

0 commit comments

Comments
 (0)