Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsCoding committed Aug 1, 2022
1 parent 126c486 commit 91dad7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustworkx/__init__.py
Expand Up @@ -2339,6 +2339,7 @@ def _digraph_all_pairs_bellman_ford_shortest_path(graph, edge_cost_fn):
def _graph_all_pairs_bellman_ford_shortest_path(graph, edge_cost_fn):
return graph_all_pairs_bellman_ford_shortest_paths(graph, edge_cost_fn)


@functools.singledispatch
def difference(
first,
Expand Down Expand Up @@ -2370,4 +2371,3 @@ def _graph_difference(
second,
):
return graph_difference(first, second)

0 comments on commit 91dad7e

Please sign in to comment.