summaryrefslogtreecommitdiff
path: root/networkx/algorithms/connectivity
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2019-10-08 23:23:33 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2019-10-12 09:21:57 -0700
commit67bb8deac5e06fd89079ffa4ea37d58ae527bdb3 (patch)
treec9ab9596ec98d99dbb5dc4c8c71a1bddb4d799e3 /networkx/algorithms/connectivity
parent75e0c43bef21f764c669244fb57f658b4afc94e9 (diff)
downloadnetworkx-67bb8deac5e06fd89079ffa4ea37d58ae527bdb3.tar.gz
Remove unused imports
Diffstat (limited to 'networkx/algorithms/connectivity')
-rw-r--r--networkx/algorithms/connectivity/tests/test_connectivity.py2
-rw-r--r--networkx/algorithms/connectivity/tests/test_cuts.py2
-rw-r--r--networkx/algorithms/connectivity/tests/test_disjoint_paths.py2
-rw-r--r--networkx/algorithms/connectivity/tests/test_kcomponents.py2
-rw-r--r--networkx/algorithms/connectivity/tests/test_kcutsets.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/networkx/algorithms/connectivity/tests/test_connectivity.py b/networkx/algorithms/connectivity/tests/test_connectivity.py
index dc3f8437..4061091c 100644
--- a/networkx/algorithms/connectivity/tests/test_connectivity.py
+++ b/networkx/algorithms/connectivity/tests/test_connectivity.py
@@ -1,5 +1,5 @@
import itertools
-from nose.tools import assert_equal, assert_true, assert_raises
+from nose.tools import assert_raises
import networkx as nx
from networkx.algorithms import flow
diff --git a/networkx/algorithms/connectivity/tests/test_cuts.py b/networkx/algorithms/connectivity/tests/test_cuts.py
index 002f5a84..9d78e56a 100644
--- a/networkx/algorithms/connectivity/tests/test_cuts.py
+++ b/networkx/algorithms/connectivity/tests/test_cuts.py
@@ -1,4 +1,4 @@
-from nose.tools import assert_equal, assert_true, assert_false, assert_raises
+from nose.tools import assert_raises
import networkx as nx
from networkx.algorithms import flow
diff --git a/networkx/algorithms/connectivity/tests/test_disjoint_paths.py b/networkx/algorithms/connectivity/tests/test_disjoint_paths.py
index 895d11e7..9bb1db6f 100644
--- a/networkx/algorithms/connectivity/tests/test_disjoint_paths.py
+++ b/networkx/algorithms/connectivity/tests/test_disjoint_paths.py
@@ -6,7 +6,7 @@
#
# NetworkX is distributed under a BSD license; see LICENSE.txt for more
# information.
-from nose.tools import assert_equal, assert_true, assert_false, raises
+from nose.tools import raises
import networkx as nx
from networkx.algorithms import flow
diff --git a/networkx/algorithms/connectivity/tests/test_kcomponents.py b/networkx/algorithms/connectivity/tests/test_kcomponents.py
index bbfe290f..bd6f55c9 100644
--- a/networkx/algorithms/connectivity/tests/test_kcomponents.py
+++ b/networkx/algorithms/connectivity/tests/test_kcomponents.py
@@ -1,5 +1,5 @@
# Test for Moody and White k-components algorithm
-from nose.tools import assert_equal, assert_true, raises, assert_greater_equal
+from nose.tools import raises
import networkx as nx
from networkx.algorithms.connectivity.kcomponents import (
build_k_number_dict,
diff --git a/networkx/algorithms/connectivity/tests/test_kcutsets.py b/networkx/algorithms/connectivity/tests/test_kcutsets.py
index 3085bdfa..eaefa688 100644
--- a/networkx/algorithms/connectivity/tests/test_kcutsets.py
+++ b/networkx/algorithms/connectivity/tests/test_kcutsets.py
@@ -1,7 +1,7 @@
# Jordi Torrents
# Test for k-cutsets
import itertools
-from nose.tools import assert_equal, assert_false, assert_true, assert_raises
+from nose.tools import assert_raises
import networkx as nx
from networkx.algorithms import flow