From 752fdceca1bf9b580256683c5a26148f9088a470 Mon Sep 17 00:00:00 2001 From: Schefflera-Arboricola <1509aditi@gmail.com> Date: Thu, 4 Jan 2024 19:20:41 +0530 Subject: [PATCH] fixed lint error --- nx_parallel/algorithms/shortest_paths/weighted.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nx_parallel/algorithms/shortest_paths/weighted.py b/nx_parallel/algorithms/shortest_paths/weighted.py index b250843..8e4e45a 100644 --- a/nx_parallel/algorithms/shortest_paths/weighted.py +++ b/nx_parallel/algorithms/shortest_paths/weighted.py @@ -52,7 +52,6 @@ def all_pairs_bellman_ford_path(G, weight="weight"): >>> parallel_path_ = dict(nx.all_pairs_bellman_ford_path(nxp.ParallelGraph(G))) >>> parallel_path_[0][2] [0, 1, 2] - """ def _calculate_shortest_paths_subset(source):