Skip to content

Commit

Permalink
fixes from black codestyle format
Browse files Browse the repository at this point in the history
  • Loading branch information
abhamra committed Oct 5, 2023
1 parent d6c8d5f commit 58a2fce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions tests/rustworkx_tests/digraph/test_clear.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_clear(self):
self.assertEqual(dag.num_edges(), 0)
self.assertEqual(dag.nodes(), [])
self.assertEqual(dag.edges(), [])

def test_clear_reuse(self):
dag = rustworkx.PyDAG()
node_a = dag.add_node("a")
Expand Down Expand Up @@ -64,5 +64,3 @@ def test_clear_edges_reuse(self):
self.assertEqual(dag.num_edges(), 2)
self.assertEqual(dag.nodes(), ["a", "b", "c"])
self.assertEqual(dag.edges(), [{"a": 1}, {"a": 2}])


1 change: 0 additions & 1 deletion tests/rustworkx_tests/graph/test_clear.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def test_clear_reuse(self):
self.assertEqual(graph.nodes(), ["a", "b", "c"])
self.assertEqual(graph.edges(), [{"a": 1}, {"a": 2}])


def test_clear_edges(self):
graph = rustworkx.PyGraph()
node_a = graph.add_node("a")
Expand Down

0 comments on commit 58a2fce

Please sign in to comment.