Skip to content

Commit 325f4a7

Browse files
committed
Update test_strongly_connected.py
1 parent 94ce510 commit 325f4a7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tests/digraph/test_strongly_connected.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,18 @@ def test_condensation(self):
8181
h = graph.add_node("H")
8282

8383
# Add edges
84-
graph.add_edges_from([
85-
(a, b, "ab"),
86-
(b, e, "be"),
87-
(e, f, "ef"),
88-
(d, a, "da"),
89-
(b, c, "bc"),
90-
(h, g, "hg"),
91-
(f, g, "fg")
92-
])
84+
graph.add_edges_from(
85+
[
86+
(a, b, "ab"),
87+
(b, e, "be"),
88+
(e, f, "ef"),
89+
(d, a, "da"),
90+
(b, c, "bc"),
91+
(h, g, "hg"),
92+
(f, g, "fg"),
93+
]
94+
)
9395
# a ----> b ----> e ----> f
9496
# ^ | ^ |
9597
# | v | v
9698
# d <---- c h <---- g
97-
98-

0 commit comments

Comments
 (0)