diff options
Diffstat (limited to 'networkx/algorithms/tree/mst.py')
-rw-r--r-- | networkx/algorithms/tree/mst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/tree/mst.py b/networkx/algorithms/tree/mst.py index 9af1bce4..e2ff7c62 100644 --- a/networkx/algorithms/tree/mst.py +++ b/networkx/algorithms/tree/mst.py @@ -5,9 +5,9 @@ Algorithms for calculating min/max spanning trees/forests. from dataclasses import dataclass, field from enum import Enum from heapq import heappop, heappush -from operator import itemgetter from itertools import count from math import isnan +from operator import itemgetter from queue import PriorityQueue import networkx as nx |