From fea8353570d6ff79e381a57336b6a89eb1bd8fdf Mon Sep 17 00:00:00 2001 From: Nicholas Landry Date: Mon, 3 Apr 2023 15:00:45 -0400 Subject: [PATCH] style: format with black --- tests/test_convert.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_convert.py b/tests/test_convert.py index 43bb9fc26..fcfa6ae10 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -194,11 +194,11 @@ def test_to_line_graph(edgelist1, hypergraph1): assert set(L.nodes) == {"e1", "e2", "e3"} assert [set(e) for e in L.edges] == [{"e1", "e2"}, {"e2", "e3"}] - L = xgi.to_line_graph(hypergraph1,s=2) + L = xgi.to_line_graph(hypergraph1, s=2) assert set(L.nodes) == {"e1", "e2", "e3"} assert [set(e) for e in L.edges] == [{"e1", "e2"}] - L = xgi.to_line_graph(hypergraph1,s=3) + L = xgi.to_line_graph(hypergraph1, s=3) assert set(L.nodes) == {"e1", "e2", "e3"} assert [set(e) for e in L.edges] == [] @@ -212,4 +212,4 @@ def test_to_line_graph(edgelist1, hypergraph1): L = xgi.to_line_graph(H) assert L.number_of_nodes() == 0 - assert L.number_of_edges() == 0 \ No newline at end of file + assert L.number_of_edges() == 0