From 7730eb004e68ffe382cf3a57ae0ca26f4ec618ef Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Fri, 15 Aug 2014 14:13:36 +0530 Subject: [PATCH] fixed init --- skimage/graph/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/skimage/graph/__init__.py b/skimage/graph/__init__.py index 2cd422ba..29bcb031 100644 --- a/skimage/graph/__init__.py +++ b/skimage/graph/__init__.py @@ -2,7 +2,6 @@ from .spath import shortest_path from .mcp import MCP, MCP_Geometric, MCP_Connect, MCP_Flexible, route_through_array from .rag import rag_mean_color, RAG from .graph_cut import cut_threshold, cut_normalized -from .rag import rag_mean_color, RAG, rag_draw from .rag import rag_mean_color, RAG, draw_rag from .graph_cut import cut_threshold ncut = cut_normalized @@ -18,6 +17,5 @@ __all__ = ['shortest_path', 'cut_threshold', 'cut_normalized', 'ncut', - 'rag_draw', 'draw_rag', 'RAG']