Remove unused imports from mainProg.py
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/587b2033 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/587b2033 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/587b2033 Branch: refs/heads/master Commit: 587b2033e71f2102c27441b45023a133f92a05e5 Parents: ebd2ef2 Author: Lewis John McGibbney <[email protected]> Authored: Mon Aug 25 17:12:11 2014 -0700 Committer: Lewis John McGibbney <[email protected]> Committed: Mon Aug 25 17:12:11 2014 -0700 ---------------------------------------------------------------------- mccsearch/code/mainProg.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/587b2033/mccsearch/code/mainProg.py ---------------------------------------------------------------------- diff --git a/mccsearch/code/mainProg.py b/mccsearch/code/mainProg.py index bb032fc..71d6278 100644 --- a/mccsearch/code/mainProg.py +++ b/mccsearch/code/mainProg.py @@ -19,13 +19,8 @@ # running the program ''' -import sys import networkx as nx -from mccSearch -import numpy as np -import numpy.ma as ma -import files -import matplotlib.pyplot as plt +import mccSearch import subprocess @@ -82,7 +77,6 @@ def main(): print ("-"*80) print "number of nodes in prunedGraph is: ", prunedGraph.number_of_nodes() print ("-"*80) - #sys.exit() print "\n -------------- TESTING findMCCs ----------" MCCList,MCSList = mccSearch.findMCC(prunedGraph) print ("-"*80)
