summaryrefslogtreecommitdiff
path: root/networkx/algorithms/centrality/betweenness.py
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2019-10-18 00:10:29 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2019-10-18 00:47:00 -0700
commit07f5ae03e3fc75464009574044246b678261e214 (patch)
treee16e4d186f75417e26d10f18effe34298b6e07f5 /networkx/algorithms/centrality/betweenness.py
parentdc73628a6291e470d76d42e9efaa6e09599d8ce8 (diff)
downloadnetworkx-07f5ae03e3fc75464009574044246b678261e214.tar.gz
Remove unused imports
Diffstat (limited to 'networkx/algorithms/centrality/betweenness.py')
-rw-r--r--networkx/algorithms/centrality/betweenness.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/networkx/algorithms/centrality/betweenness.py b/networkx/algorithms/centrality/betweenness.py
index b848b635..e72a8cbf 100644
--- a/networkx/algorithms/centrality/betweenness.py
+++ b/networkx/algorithms/centrality/betweenness.py
@@ -11,7 +11,6 @@
from heapq import heappush, heappop
from itertools import count
-import networkx as nx
from networkx.utils import py_random_state
from networkx.utils.decorators import not_implemented_for