Skip to content

Commit 28ee004

Browse files
committed
Fixed new Tutte code to conform to PEP 8 as per developer docs.
1 parent 408df72 commit 28ee004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/graphs/generic_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21696,7 +21696,7 @@ def layout_tutte(self, external_face=None, external_face_pos=None, **options):
2169621696

2169721697
if external_face is None:
2169821698
from sage.graphs.graph import Graph
21699-
H = Graph(self) # take a (undirected) copy H of the graph
21699+
H = Graph(self) # take a (undirected) copy H of the graph
2170021700
u, v = next(H.edge_iterator(labels=False)) # take any edge (u, v) of H
2170121701
H.delete_edge(u, v) # remove edge (u, v) from H
2170221702
external_face = H.shortest_path(v, u)

0 commit comments

Comments
 (0)