Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Schefflera-Arboricola committed Jan 4, 2024
1 parent 7f4ce87 commit cede435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx_parallel/algorithms/shortest_paths/weighted.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def all_pairs_bellman_ford_path(G, weight="weight"):
>>> import nx_parallel as nxp
>>> parallel_path_ = dict(nx.all_pairs_bellman_ford_path(nxp.ParallelGraph(G)))
>>> parallel_path_
{1: {1: [1], 0: [1, 0], 2: [1, 2]}, 0: {0: [0], 1: [0, 1], 2: [0, 1, 2]},
{1: {1: [1], 0: [1, 0], 2: [1, 2]}, 0: {0: [0], 1: [0, 1], 2: [0, 1, 2]},
2: {2: [2], 1: [2, 1], 0: [2, 1, 0]}}
"""
Expand Down

0 comments on commit cede435

Please sign in to comment.